Skip to content

Commit e156935

Browse files
feat(version): support 0.11.0
1 parent 32a3a95 commit e156935

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
[![pub package](https://img.shields.io/pub/v/dart_appwrite.svg?style=flat-square)](https://pub.dartlang.org/packages/dart_appwrite)
44
![License](https://img.shields.io/github/license/appwrite/sdk-for-dart.svg?style=flat-square)
5-
![Version](https://img.shields.io/badge/api%20version-0.10.0-blue.svg?style=flat-square)
5+
![Version](https://img.shields.io/badge/api%20version-0.11.0-blue.svg?style=flat-square)
66
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
77
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite_io?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite_io)
88
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
99

10-
**This SDK is compatible with Appwrite server version 0.10.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-dart/releases).**
10+
**This SDK is compatible with Appwrite server version 0.11.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-dart/releases).**
1111

1212
> This is the Dart SDK for integrating with Appwrite from your Dart server-side code. If you're looking for the Flutter SDK you should check [appwrite/sdk-for-flutter](https://github.com/appwrite/sdk-for-flutter)
1313
@@ -23,7 +23,7 @@ Add this to your package's `pubspec.yaml` file:
2323

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

lib/services/teams.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@ class Teams extends Service {
150150

151151
final Map<String, dynamic> params = {
152152
'email': email,
153-
'name': name,
154153
'roles': roles,
155154
'url': url,
155+
'name': name,
156156
};
157157

158158
final Map<String, String> headers = {

lib/src/client_browser.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
2525
_httpClient = BrowserClient();
2626
_headers = {
2727
'content-type': 'application/json',
28-
'x-sdk-version': 'appwrite:dart:1.0.1',
28+
'x-sdk-version': 'appwrite:dart:1.0.2',
2929
'X-Appwrite-Response-Format' : '0.10.0',
3030
};
3131

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
this._endPoint = endPoint;
3636
this._headers = {
3737
'content-type': 'application/json',
38-
'x-sdk-version': 'appwrite:dart:1.0.1',
38+
'x-sdk-version': 'appwrite:dart:1.0.2',
3939
'X-Appwrite-Response-Format' : '0.10.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: 1.0.1
2+
version: 1.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-dart

0 commit comments

Comments
 (0)