Skip to content

Commit ab73474

Browse files
committed
upgraded dependencies
1 parent e2c209b commit ab73474

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 4.0.2
2+
* Upgrade dependencies
3+
14
## 4.0.1
25
* Fix InputFile filename param
36
* Fix examples

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
2121

2222
```yml
2323
dependencies:
24-
appwrite: ^4.0.1
24+
appwrite: ^4.0.2
2525
```
2626
2727
You can install packages from the command line:

lib/src/client_browser.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
3737
.replaceFirst('http://', 'ws://');
3838
_headers = {
3939
'content-type': 'application/json',
40-
'x-sdk-version': 'appwrite:flutter:4.0.1',
40+
'x-sdk-version': 'appwrite:flutter:4.0.2',
4141
'X-Appwrite-Response-Format' : '0.13.0',
4242
};
4343

lib/src/client_io.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class ClientIO extends ClientBase with ClientMixin {
5555
.replaceFirst('http://', 'ws://');
5656
_headers = {
5757
'content-type': 'application/json',
58-
'x-sdk-version': 'appwrite:flutter:4.0.1',
58+
'x-sdk-version': 'appwrite:flutter:4.0.2',
5959
'X-Appwrite-Response-Format' : '0.13.0',
6060
};
6161

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: appwrite
2-
version: 4.0.1
2+
version: 4.0.2
33
description: Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API
44
homepage: https://appwrite.io
55
repository: https://github.com/appwrite/sdk-for-flutter
@@ -11,11 +11,11 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
cookie_jar: ^3.0.1
14-
device_info_plus: ^3.2.1
15-
flutter_web_auth: ^0.4.0
14+
device_info_plus: ^3.2.2
15+
flutter_web_auth: ^0.4.1
1616
http: ^0.13.4
17-
package_info_plus: 1.3.0
18-
path_provider: ^2.0.8
17+
package_info_plus: 1.4.2
18+
path_provider: ^2.0.9
1919
web_socket_channel: ^2.1.0
2020

2121
dev_dependencies:

0 commit comments

Comments
 (0)