Skip to content

Commit 1a520c2

Browse files
committed
chore: updates for appwrite 1.4.2
1 parent 7b93840 commit 1a520c2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

appwrite/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ def __init__(self):
1111
self._endpoint = 'https://HOSTNAME/v1'
1212
self._global_headers = {
1313
'content-type': '',
14-
'user-agent' : 'AppwritePythonSDK/3.0.2 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
14+
'user-agent' : 'AppwritePythonSDK/4.0.0 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
1515
'x-sdk-name': 'Python',
1616
'x-sdk-platform': 'server',
1717
'x-sdk-language': 'python',
18-
'x-sdk-version': '3.0.2',
18+
'x-sdk-version': '4.0.0',
1919
'X-Appwrite-Response-Format' : '1.4.0',
2020
}
2121

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
setuptools.setup(
99
name = 'appwrite',
1010
packages = ['appwrite', 'appwrite/services'],
11-
version = '3.0.2',
11+
version = '4.0.0',
1212
license='BSD-3-Clause',
1313
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',
1414
long_description = long_description,
@@ -18,7 +18,7 @@
1818
maintainer = 'Appwrite Team',
1919
maintainer_email = 'team@appwrite.io',
2020
url = 'https://appwrite.io/support',
21-
download_url='https://github.com/appwrite/sdk-for-python/archive/3.0.2.tar.gz',
21+
download_url='https://github.com/appwrite/sdk-for-python/archive/4.0.0.tar.gz',
2222
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
2323
install_requires=[
2424
'requests',

0 commit comments

Comments
 (0)