From b065d935b22d91d519462dea64abba1c39437977 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Mon, 24 May 2021 12:40:37 +0300 Subject: [PATCH] Fixed deployment bug --- CHANGELOG.md | 4 ++++ README.md | 2 +- lib/client.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33c3300..b9a0795 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.6.2 + +- Fixed deployment bug + ## 0.6.1 - Fix for image preview param types diff --git a/README.md b/README.md index d67738a..f2bd139 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Add this to your package's `pubspec.yaml` file: ```yml dependencies: - appwrite: ^0.6.1 + appwrite: ^0.6.2 ``` You can install packages from the command line: diff --git a/lib/client.dart b/lib/client.dart index eae6e8a..c686c9c 100644 --- a/lib/client.dart +++ b/lib/client.dart @@ -26,7 +26,7 @@ class Client { this.headers = { 'content-type': 'application/json', - 'x-sdk-version': 'appwrite:flutter:0.6.1', + 'x-sdk-version': 'appwrite:flutter:0.6.2', 'X-Appwrite-Response-Format' : '0.8.0', }; diff --git a/pubspec.yaml b/pubspec.yaml index f58870c..1932f2e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: appwrite -version: 0.6.1 +version: 0.6.2 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