Skip to content

Commit 567bac1

Browse files
feat: support for 0.13.0
1 parent a93cae2 commit 567bac1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add this to your package's `pubspec.yaml` file:
2323

2424
```yml
2525
dependencies:
26-
dart_appwrite: ^3.0.2
26+
dart_appwrite: ^4.0.0
2727
```
2828
2929
You can install packages from the command line:

lib/src/client_browser.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
2626
_httpClient = BrowserClient();
2727
_headers = {
2828
'content-type': 'application/json',
29-
'x-sdk-version': 'appwrite:dart:3.0.2',
29+
'x-sdk-version': 'appwrite:dart:4.0.0',
3030
'X-Appwrite-Response-Format' : '0.13.0',
3131
};
3232

lib/src/client_io.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class ClientIO extends ClientBase with ClientMixin {
3535
_endPoint = endPoint;
3636
_headers = {
3737
'content-type': 'application/json',
38-
'x-sdk-version': 'appwrite:dart:3.0.2',
38+
'x-sdk-version': 'appwrite:dart:4.0.0',
3939
'X-Appwrite-Response-Format' : '0.13.0',
4040
};
4141

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: dart_appwrite
2-
version: 3.0.2
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-dart

0 commit comments

Comments
 (0)