Skip to content

Commit 937ee9b

Browse files
jv-asanaactions-user
authored andcommitted
Updated Python SDK
1 parent 964e82b commit 937ee9b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Python client library for Asana
44

55
- API version: 1.0
6-
- Package version: 4.0.0
6+
- Package version: 4.0.1
77

88
## Requirements.
99

asana/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7575
self.default_headers[header_name] = header_value
7676
self.cookie = cookie
7777
# Set default User-Agent.
78-
self.user_agent = 'Swagger-Codegen/4.0.0/python'
78+
self.user_agent = 'Swagger-Codegen/4.0.1/python'
7979
# Add custom header
8080
self.default_headers['X-Asana-Client-Lib'] = urlencode(
8181
{
8282
'language': 'Python',
83-
'version': 4.0.0,
83+
'version': '4.0.1',
8484
'language_version': platform.python_version(),
8585
'os': platform.system(),
8686
'os_version': platform.release()

asana/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,5 +249,5 @@ def to_debug_report(self):
249249
"OS: {env}\n"\
250250
"Python Version: {pyversion}\n"\
251251
"Version of the API: 1.0\n"\
252-
"SDK Package Version: 4.0.0".\
252+
"SDK Package Version: 4.0.1".\
253253
format(env=sys.platform, pyversion=sys.version)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "asana"
17-
VERSION = "4.0.0"
17+
VERSION = "4.0.1"
1818
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
1919
LONG_DESCRIPTION = readme.read()
2020
# To install the library, run the following

0 commit comments

Comments
 (0)