Skip to content

Commit 18b2a89

Browse files
feat: support for 0.13.0
1 parent 5b35de7 commit 18b2a89

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

appwrite/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self):
1111
self._endpoint = 'https://HOSTNAME/v1'
1212
self._global_headers = {
1313
'content-type': '',
14-
'x-sdk-version': 'appwrite:python:0.6.0',
14+
'x-sdk-version': 'appwrite:python:0.7.0',
1515
'X-Appwrite-Response-Format' : '0.13.0',
1616
}
1717

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
setuptools.setup(
44
name = 'appwrite',
55
packages = ['appwrite', 'appwrite/services'],
6-
version = '0.6.0',
6+
version = '0.7.0',
77
license='BSD-3-Clause',
88
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',
99
author = 'Appwrite Team',
1010
author_email = '[email protected]',
1111
maintainer = 'Appwrite Team',
1212
maintainer_email = '[email protected]',
1313
url = 'https://appwrite.io/support',
14-
download_url='https://github.com/appwrite/sdk-for-python/archive/0.6.0.tar.gz',
14+
download_url='https://github.com/appwrite/sdk-for-python/archive/0.7.0.tar.gz',
1515
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
1616
install_requires=[
1717
'requests',

0 commit comments

Comments
 (0)