diff --git a/CHANGELOG.md b/CHANGELOG.md index f592de0..d33bedb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 15.0.3 + +* Upgrade dependencies to resolve PlatformConstants error with Expo 53 + ## 15.0.2 * Avoid setting empty `User-Agent` header and only encode it when present. diff --git a/README.md b/README.md index 793fc62..306c5fd 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file: ```yml dependencies: - appwrite: ^15.0.2 + appwrite: ^15.0.3 ``` You can install packages from the command line: diff --git a/lib/services/databases.dart b/lib/services/databases.dart index eb3cdd3..f276f50 100644 --- a/lib/services/databases.dart +++ b/lib/services/databases.dart @@ -36,7 +36,6 @@ class Databases extends Service { /// collection resource using either a [server /// integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) /// API or directly from your database console. - /// Future createDocument({ required String databaseId, required String collectionId, diff --git a/lib/src/client_browser.dart b/lib/src/client_browser.dart index f82b4c4..4f2ac16 100644 --- a/lib/src/client_browser.dart +++ b/lib/src/client_browser.dart @@ -40,7 +40,7 @@ class ClientBrowser extends ClientBase with ClientMixin { 'x-sdk-name': 'Flutter', 'x-sdk-platform': 'client', 'x-sdk-language': 'flutter', - 'x-sdk-version': '15.0.2', + 'x-sdk-version': '15.0.3', 'X-Appwrite-Response-Format': '1.6.0', }; diff --git a/lib/src/client_io.dart b/lib/src/client_io.dart index a3e4f01..04c66eb 100644 --- a/lib/src/client_io.dart +++ b/lib/src/client_io.dart @@ -59,7 +59,7 @@ class ClientIO extends ClientBase with ClientMixin { 'x-sdk-name': 'Flutter', 'x-sdk-platform': 'client', 'x-sdk-language': 'flutter', - 'x-sdk-version': '15.0.2', + 'x-sdk-version': '15.0.3', 'X-Appwrite-Response-Format': '1.6.0', }; diff --git a/pubspec.yaml b/pubspec.yaml index 3f6cfd5..d00230a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: appwrite -version: 15.0.2 +version: 15.0.3 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