Skip to content

Commit 6e76cf2

Browse files
committed
fix changelog
1 parent 9777dc0 commit 6e76cf2

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Change Log
22

3-
## 13.7.0
3+
## 14.0.0
44

5+
* Rename `VCSDeploymentType` enum to `VCSReferenceType`
6+
* Change `create_template_deployment` method signature: replace `version` parameter with `type` (TemplateReferenceType) and `reference` parameters
57
* Add `get_screenshot` method to `Avatars` service
8+
* Add `Theme`, `Timezone` and `Output` enums
9+
* Add support for dart39 and flutter335 runtimes
610

711
## 13.6.1
812

appwrite/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ def __init__(self):
1515
self._endpoint = 'https://cloud.appwrite.io/v1'
1616
self._global_headers = {
1717
'content-type': '',
18-
'user-agent' : f'AppwritePythonSDK/13.7.0 ({platform.uname().system}; {platform.uname().version}; {platform.uname().machine})',
18+
'user-agent' : f'AppwritePythonSDK/14.0.0 ({platform.uname().system}; {platform.uname().version}; {platform.uname().machine})',
1919
'x-sdk-name': 'Python',
2020
'x-sdk-platform': 'server',
2121
'x-sdk-language': 'python',
22-
'x-sdk-version': '13.7.0',
22+
'x-sdk-version': '14.0.0',
2323
'X-Appwrite-Response-Format' : '1.8.0',
2424
}
2525

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 = '13.7.0',
11+
version = '14.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/13.7.0.tar.gz',
21+
download_url='https://github.com/appwrite/sdk-for-python/archive/14.0.0.tar.gz',
2222
install_requires=[
2323
'requests',
2424
],

0 commit comments

Comments
 (0)