Skip to content

Commit 4fe858f

Browse files
committed
Updated sources
1 parent eeadc2f commit 4fe858f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

groupdocs_conversion_cloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ def __init__(self, configuration, header_name=None, header_value=None,
7474
self.configuration = configuration
7575
self.pool = None
7676
self.rest_client = rest.RESTClientObject(configuration)
77-
self.default_headers = {'x-groupdocs-client': 'python sdk', 'x-groupdocs-version': '23.4'}
77+
self.default_headers = {'x-groupdocs-client': 'python sdk', 'x-groupdocs-version': '23.6'}
7878
if header_name is not None:
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'python sdk 23.4'
82+
self.user_agent = 'python sdk 23.6'
8383

8484
def __del__(self):
8585
if self.pool is not None:

groupdocs_conversion_cloud/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,6 @@ def to_debug_report(self):
202202
return "Python SDK Debug Report:\n"\
203203
"OS: {env}\n"\
204204
"Python Version: {pyversion}\n"\
205-
"Version of the API: 23.4\n"\
206-
"SDK Package Version: 23.4".\
205+
"Version of the API: 23.6\n"\
206+
"SDK Package Version: 23.6".\
207207
format(env=sys.platform, pyversion=sys.version)

setup.py

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

88
NAME = "groupdocs-conversion-cloud"
9-
VERSION = "23.4"
9+
VERSION = "23.6"
1010

1111
# Append current time to the version when publishing to test environment
1212
if "--test" in sys.argv:

0 commit comments

Comments
 (0)