Skip to content

Commit c18deab

Browse files
feat(version): support 0.11.0
1 parent 4dd1f4f commit c18deab

14 files changed

+14
-17
lines changed

CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
## 2.0.2
2-
- Fix realtime not restarting when there was only one subscription and that was closed and reopened
3-
41
## 2.0.1
52
- Fix realtime close and reconnect working only 1 out of two times due to future returning too early
63
- Add dart doc comments to newly added response models

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
[![pub package](https://img.shields.io/pub/v/appwrite?style=flat-square)](https://pub.dartlang.org/packages/appwrite)
44
![License](https://img.shields.io/github/license/appwrite/sdk-for-flutter.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-flutter/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-flutter/releases).**
1111

1212
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Flutter SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
1313

lib/services/teams.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ class Teams extends Service {
156156

157157
final Map<String, dynamic> params = {
158158
'email': email,
159-
'name': name,
160159
'roles': roles,
161160
'url': url,
161+
'name': name,
162162
};
163163

164164
final Map<String, String> headers = {

lib/src/models/continent_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of appwrite.models;
22

33
/// Continents List
44
class ContinentList {
5-
/// Total sum of items in the list.
5+
/// Total number of items available on the server.
66
final int sum;
77
/// List of continents.
88
final List<Continent> continents;

lib/src/models/country_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of appwrite.models;
22

33
/// Countries List
44
class CountryList {
5-
/// Total sum of items in the list.
5+
/// Total number of items available on the server.
66
final int sum;
77
/// List of countries.
88
final List<Country> countries;

lib/src/models/currency_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of appwrite.models;
22

33
/// Currencies List
44
class CurrencyList {
5-
/// Total sum of items in the list.
5+
/// Total number of items available on the server.
66
final int sum;
77
/// List of currencies.
88
final List<Currency> currencies;

lib/src/models/document_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of appwrite.models;
22

33
/// Documents List
44
class DocumentList {
5-
/// Total sum of items in the list.
5+
/// Total number of items available on the server.
66
final int sum;
77
/// List of documents.
88
final List<Document> documents;

lib/src/models/execution_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of appwrite.models;
22

33
/// Executions List
44
class ExecutionList {
5-
/// Total sum of items in the list.
5+
/// Total number of items available on the server.
66
final int sum;
77
/// List of executions.
88
final List<Execution> executions;

lib/src/models/file_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of appwrite.models;
22

33
/// Files List
44
class FileList {
5-
/// Total sum of items in the list.
5+
/// Total number of items available on the server.
66
final int sum;
77
/// List of files.
88
final List<File> files;

lib/src/models/language_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of appwrite.models;
22

33
/// Languages List
44
class LanguageList {
5-
/// Total sum of items in the list.
5+
/// Total number of items available on the server.
66
final int sum;
77
/// List of languages.
88
final List<Language> languages;

0 commit comments

Comments
 (0)