Skip to content

Commit ef6bd15

Browse files
committed
feat: update for 1.0.0-RC1
1 parent 7721d50 commit ef6bd15

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

appwrite/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self):
1414
'x-sdk-name': 'Python',
1515
'x-sdk-platform': 'server',
1616
'x-sdk-language': 'python',
17-
'x-sdk-version': '0.11.0-RC1',
17+
'x-sdk-version': '1.0.0-RC1',
1818
'X-Appwrite-Response-Format' : '1.0.0-RC1',
1919
}
2020

appwrite/services/avatars.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def get_image(self, url, width = None, height = None):
9797
'content-type': 'application/json',
9898
}, params)
9999

100-
def get_initials(self, name = None, width = None, height = None, color = None, background = None):
100+
def get_initials(self, name = None, width = None, height = None, background = None):
101101
"""Get User Initials"""
102102

103103

@@ -107,7 +107,6 @@ def get_initials(self, name = None, width = None, height = None, color = None, b
107107
params['name'] = name
108108
params['width'] = width
109109
params['height'] = height
110-
params['color'] = color
111110
params['background'] = background
112111

113112
return self.client.call('get', path, {

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.11.0-RC1',
6+
version = '1.0.0-RC1',
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.11.0-RC1.tar.gz',
14+
download_url='https://github.com/appwrite/sdk-for-python/archive/1.0.0-RC1.tar.gz',
1515
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
1616
install_requires=[
1717
'requests',

0 commit comments

Comments
 (0)