Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
YaroslawEkimov committed Oct 9, 2024
2 parents ca69b62 + 69ed7ab commit f9b667e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions asposewordscloud/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,12 +353,12 @@ def __init__(self, configuration=None, header_name=None, header_value=None,

self.pool = None
self.rest_client = rest.RESTClientObject(configuration)
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-client-version': '24.9'}
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-client-version': '24.10'}
if header_name is not None:
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'python sdk 24.9'
self.user_agent = 'python sdk 24.10'

def __del__(self):
if not self.pool is None:
Expand Down
4 changes: 2 additions & 2 deletions asposewordscloud/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,6 @@ def to_debug_report(self):
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 24.9\n"\
"SDK Package Version: 24.9".\
"Version of the API: 24.10\n"\
"SDK Package Version: 24.10".\
format(env=sys.platform, pyversion=sys.version)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
OpenAPI spec version: 24.9
OpenAPI spec version: 24.10
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand All @@ -14,7 +14,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "aspose-words-cloud"
VERSION = "24.9.0"
VERSION = "24.10.0"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit f9b667e

Please sign in to comment.