Skip to content

Commit 3de1c00

Browse files
Merge pull request #146 from appwrite/concurrent-chunk-uploads-version-bump-1-9-x
chore: bump SDK version to 19.2.0
2 parents c47e7c1 + 3d9009b commit 3de1c00

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

appwrite/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ def __init__(self):
1717
self._endpoint = 'https://cloud.appwrite.io/v1'
1818
self._global_headers = {
1919
'content-type': '',
20-
'user-agent' : f'AppwritePythonSDK/19.1.0 ({platform.uname().system}; {platform.uname().version}; {platform.uname().machine})',
20+
'user-agent' : f'AppwritePythonSDK/19.2.0 ({platform.uname().system}; {platform.uname().version}; {platform.uname().machine})',
2121
'x-sdk-name': 'Python',
2222
'x-sdk-platform': 'server',
2323
'x-sdk-language': 'python',
24-
'x-sdk-version': '19.1.0',
24+
'x-sdk-version': '19.2.0',
2525
'X-Appwrite-Response-Format' : '1.9.5',
2626
}
2727

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "appwrite"
7-
version = "19.1.0"
7+
version = "19.2.0"
88
description = "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API"
99
readme = "README.md"
1010
requires-python = ">=3.9"

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 = setuptools.find_packages(),
11-
version = '19.1.0',
11+
version = '19.2.0',
1212
license='BSD-3-Clause',
1313
description = 'Appwrite is an open-source self-hosted backend server that abstracts and simplifies 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/19.1.0.tar.gz',
21+
download_url='https://github.com/appwrite/sdk-for-python/archive/19.2.0.tar.gz',
2222
install_requires=[
2323
'requests',
2424
'pydantic>=2,<3',

0 commit comments

Comments
 (0)