diff --git a/README.md b/README.md index 5f88f39..3aab220 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file: ```yml dependencies: - appwrite: ^2.0.3 + appwrite: ^2.1.0 ``` You can install packages from the command line: diff --git a/lib/src/client_browser.dart b/lib/src/client_browser.dart index c5c98bd..d310c44 100644 --- a/lib/src/client_browser.dart +++ b/lib/src/client_browser.dart @@ -36,7 +36,7 @@ class ClientBrowser extends ClientBase with ClientMixin { .replaceFirst('http://', 'ws://'); _headers = { 'content-type': 'application/json', - 'x-sdk-version': 'appwrite:flutter:2.0.3', + 'x-sdk-version': 'appwrite:flutter:2.1.0', 'X-Appwrite-Response-Format' : '0.11.0', }; diff --git a/lib/src/client_io.dart b/lib/src/client_io.dart index 7b4040d..b797836 100644 --- a/lib/src/client_io.dart +++ b/lib/src/client_io.dart @@ -55,7 +55,7 @@ class ClientIO extends ClientBase with ClientMixin { .replaceFirst('http://', 'ws://'); this._headers = { 'content-type': 'application/json', - 'x-sdk-version': 'appwrite:flutter:2.0.3', + 'x-sdk-version': 'appwrite:flutter:2.1.0', 'X-Appwrite-Response-Format' : '0.11.0', }; diff --git a/pubspec.yaml b/pubspec.yaml index 556a21d..53291ae 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: appwrite -version: 2.0.3 +version: 2.1.0 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 homepage: https://appwrite.io repository: https://github.com/appwrite/sdk-for-flutter