Skip to content

Commit 7c6a06d

Browse files
ivankamkinIvan KamkinDenis-Averin
authored
Release 22.9 (#42)
* SDK version updated * Blog link updated Co-authored-by: Ivan Kamkin <[email protected]> Co-authored-by: Denis Averin <[email protected]>
1 parent ab3353a commit 7c6a06d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
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: 22.8.0
8+
- Package version: 22.9.0
99

1010
## Demo applications
1111

@@ -105,7 +105,7 @@ All Aspose.BarCode for Cloud SDKs, helper scripts and templates are licensed und
105105
- [**Documentation**](https://docs.aspose.cloud/barcode/)
106106
- [**Free Support Forum**](https://forum.aspose.cloud/c/barcode)
107107
- [**Paid Support Helpdesk**](https://helpdesk.aspose.cloud/)
108-
- [**Blog**](https://blog.aspose.cloud/category/barcode/)
108+
- [**Blog**](https://blog.aspose.cloud/categories/aspose.barcode-cloud-product-family/)
109109

110110
## Documentation for API Endpoints
111111

aspose_barcode_cloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
9191
self.rest_client = RESTClientObject(configuration)
9292
self.default_headers = {
9393
"x-aspose-client": "python sdk",
94-
"x-aspose-client-version": "22.8.0",
94+
"x-aspose-client-version": "22.9.0",
9595
}
9696
if header_name is not None:
9797
self.default_headers[header_name] = header_value
9898
self.cookie = cookie
9999
# Set default User-Agent.
100-
self.user_agent = "Aspose-Barcode-SDK/22.8.0/python"
100+
self.user_agent = "Aspose-Barcode-SDK/22.9.0/python"
101101

102102
def __del__(self):
103103
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: 22.8.0".format(env=sys.platform, pyversion=sys.version)
289+
"SDK Package Version: 22.9.0".format(env=sys.platform, pyversion=sys.version)
290290
)
291291

292292
@staticmethod

setup.py

Lines changed: 2 additions & 2 deletions
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 = "22.8.0"
32+
VERSION = "22.9.0"
3333
# To install the library, run the following
3434
#
3535
# python setup.py install
@@ -190,6 +190,6 @@
190190
"Documentation": "https://docs.aspose.cloud/barcode/",
191191
"Free Support Forum": "https://forum.aspose.cloud/c/barcode",
192192
"Paid Support Helpdesk": "https://helpdesk.aspose.cloud/",
193-
"Blog": "https://blog.aspose.cloud/category/barcode/",
193+
"Blog": "https://blog.aspose.cloud/categories/aspose.barcode-cloud-product-family/",
194194
},
195195
)

tests/test_headers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ def test_default_headers(self):
2424

2525
self.assertEqual(1, self.rest_client_mock.GET.call_count)
2626
headers = self.rest_client_mock.GET.call_args[1]["headers"]
27-
self.assertEqual("Aspose-Barcode-SDK/22.8.0/python", headers["User-Agent"])
27+
self.assertEqual("Aspose-Barcode-SDK/22.9.0/python", headers["User-Agent"])
2828
self.assertEqual("python sdk", headers["x-aspose-client"])
29-
self.assertEqual("22.8.0", headers["x-aspose-client-version"])
29+
self.assertEqual("22.9.0", headers["x-aspose-client-version"])
3030

3131
def test_header_override(self):
3232
api_client = ApiClient(self.local_config, header_name="x-aspose-client", header_value="some custom sdk")

0 commit comments

Comments
 (0)