Skip to content

Commit 37ba6c1

Browse files
feat: support for 0.13.0
1 parent 610fcf3 commit 37ba6c1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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: ^3.0.1
24+
appwrite: ^4.0.0
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:3.0.1',
40+
'x-sdk-version': 'appwrite:flutter:4.0.0',
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:3.0.1',
58+
'x-sdk-version': 'appwrite:flutter:4.0.0',
5959
'X-Appwrite-Response-Format' : '0.13.0',
6060
};
6161

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: appwrite
2-
version: 3.0.1
2+
version: 4.0.0
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

0 commit comments

Comments
 (0)