Skip to content

Commit d7192b9

Browse files
authored
Package version updated (#79)
1 parent 9477188 commit d7192b9

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

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: 24.7.0
8+
- Package version: 24.8.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
@@ -60,13 +60,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
6060
self.rest_client = RESTClientObject(configuration)
6161
self.default_headers = {
6262
"x-aspose-client": "python sdk",
63-
"x-aspose-client-version": "24.7.0",
63+
"x-aspose-client-version": "24.8.0",
6464
}
6565
if header_name is not None:
6666
self.default_headers[header_name] = header_value
6767
self.cookie = cookie
6868
# Set default User-Agent.
69-
self.user_agent = "Aspose-Barcode-SDK/24.7.0/python"
69+
self.user_agent = "Aspose-Barcode-SDK/24.8.0/python"
7070

7171
def __del__(self):
7272
self.rest_client.close()

aspose_barcode_cloud/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def to_debug_report(self):
258258
"OS: {env}\n"
259259
"Python Version: {pyversion}\n"
260260
"Version of the API: 3.0\n"
261-
"SDK Package Version: 24.7.0".format(env=sys.platform, pyversion=sys.version)
261+
"SDK Package Version: 24.8.0".format(env=sys.platform, pyversion=sys.version)
262262
)
263263

264264
@staticmethod

aspose_barcode_cloud/rest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def getheader(self, name, default=None):
3737

3838

3939
class RESTClientObject(object):
40-
4140
def __init__(self, configuration, pools_size=4, maxsize=None):
4241
# urllib3.PoolManager will pass all kw parameters to connectionpool
4342
# https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
@@ -354,7 +353,6 @@ def close(self):
354353

355354

356355
class ApiException(Exception):
357-
358356
def __init__(self, status=0, reason=None, http_resp=None):
359357
# type: (int, str, RESTResponse) -> None
360358
if http_resp:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup, find_packages
66

77
NAME = "aspose-barcode-cloud"
8-
VERSION = "24.7.0"
8+
VERSION = "24.8.0"
99
# To install the library, run the following
1010
#
1111
# python setup.py install

0 commit comments

Comments
 (0)