diff --git a/README.md b/README.md index 703c1e3..85f949e 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite) [![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord) -**This SDK is compatible with Appwrite server version 1.0.0. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-python/releases).** +**This SDK is compatible with Appwrite server version 1.0.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-python/releases).** 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 Python 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) diff --git a/appwrite/client.py b/appwrite/client.py index 8bec1a5..36a98a0 100644 --- a/appwrite/client.py +++ b/appwrite/client.py @@ -14,7 +14,7 @@ def __init__(self): 'x-sdk-name': 'Python', 'x-sdk-platform': 'server', 'x-sdk-language': 'python', - 'x-sdk-version': '1.0.0', + 'x-sdk-version': '1.1.0', 'X-Appwrite-Response-Format' : '1.0.0', } diff --git a/appwrite/role.py b/appwrite/role.py index 73780b2..c794826 100644 --- a/appwrite/role.py +++ b/appwrite/role.py @@ -27,8 +27,4 @@ def team(id, role = ""): @staticmethod def member(id): - return f'member:{id}' - - @staticmethod - def status(status): - return f'status:{status}' \ No newline at end of file + return f'member:{id}' \ No newline at end of file diff --git a/setup.py b/setup.py index 0189a21..57656d6 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setuptools.setup( name = 'appwrite', packages = ['appwrite', 'appwrite/services'], - version = '1.0.0', + version = '1.1.0', license='BSD-3-Clause', 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', author = 'Appwrite Team', @@ -11,7 +11,7 @@ maintainer = 'Appwrite Team', maintainer_email = 'team@appwrite.io', url = 'https://appwrite.io/support', - download_url='https://github.com/appwrite/sdk-for-python/archive/1.0.0.tar.gz', + download_url='https://github.com/appwrite/sdk-for-python/archive/1.1.0.tar.gz', # keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'], install_requires=[ 'requests',