Skip to content

Commit e3b3a17

Browse files
authored
Release 23.10 (#66)
* Version of SDK updated * Added python version 3.12
1 parent 919e9f1 commit e3b3a17

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![PyPI](https://img.shields.io/pypi/v/aspose-barcode-cloud)](https://pypi.org/project/aspose-barcode-cloud/)
66

77
- API version: 3.0
8-
- Package version: 23.9.0
8+
- Package version: 23.10.0
99

1010
## Demo applications
1111

aspose_barcode_cloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
9090
self.rest_client = RESTClientObject(configuration)
9191
self.default_headers = {
9292
"x-aspose-client": "python sdk",
93-
"x-aspose-client-version": "23.9.0",
93+
"x-aspose-client-version": "23.10.0",
9494
}
9595
if header_name is not None:
9696
self.default_headers[header_name] = header_value
9797
self.cookie = cookie
9898
# Set default User-Agent.
99-
self.user_agent = "Aspose-Barcode-SDK/23.9.0/python"
99+
self.user_agent = "Aspose-Barcode-SDK/23.10.0/python"
100100

101101
def __del__(self):
102102
self.rest_client.close()

aspose_barcode_cloud/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def to_debug_report(self):
286286
"OS: {env}\n"
287287
"Python Version: {pyversion}\n"
288288
"Version of the API: 3.0\n"
289-
"SDK Package Version: 23.9.0".format(env=sys.platform, pyversion=sys.version)
289+
"SDK Package Version: 23.10.0".format(env=sys.platform, pyversion=sys.version)
290290
)
291291

292292
@staticmethod

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from setuptools import setup, find_packages
3030

3131
NAME = "aspose-barcode-cloud"
32-
VERSION = "23.9.0"
32+
VERSION = "23.10.0"
3333
# To install the library, run the following
3434
#
3535
# python setup.py install
@@ -67,6 +67,7 @@
6767
"Programming Language :: Python :: 3.9",
6868
"Programming Language :: Python :: 3.10",
6969
"Programming Language :: Python :: 3.11",
70+
"Programming Language :: Python :: 3.12",
7071
],
7172
keywords=[
7273
"Barcode-Scan",

0 commit comments

Comments
 (0)