Skip to content

Commit 0f95866

Browse files
ivankamkinIvan Kamkin
andauthored
Release 24.12 (#83)
* Version updated * setup.py formatted --------- Co-authored-by: Ivan Kamkin <[email protected]>
1 parent 2553258 commit 0f95866

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dist:
2222

2323
.PHONY: format
2424
format:
25-
black --line-length=120 -v $(SRC) tests/ example.py scripts/
25+
black --line-length=120 -v $(SRC) tests/ scripts/ *.py
2626

2727
.PHONY: format_doc
2828
format_doc:

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.11.0
8+
- Package version: 24.12.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.11.0",
63+
"x-aspose-client-version": "24.12.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.11.0/python"
69+
self.user_agent = "Aspose-Barcode-SDK/24.12.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.11.0".format(env=sys.platform, pyversion=sys.version)
261+
"SDK Package Version: 24.12.0".format(env=sys.platform, pyversion=sys.version)
262262
)
263263

264264
@staticmethod

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.11.0"
8+
VERSION = "24.12.0"
99
# To install the library, run the following
1010
#
1111
# python setup.py install

0 commit comments

Comments
 (0)