From 6c6d01f240090c36cbe9a8ea18e0a132b6802f95 Mon Sep 17 00:00:00 2001 From: Ivan Kamkin <234-Ivan.Kamkin@users.noreply.git.saltov.dynabic.com> Date: Sat, 21 Dec 2024 12:33:02 +0500 Subject: [PATCH 1/2] Version updated --- README.md | 2 +- aspose_barcode_cloud/api_client.py | 4 ++-- aspose_barcode_cloud/configuration.py | 2 +- setup.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1c5a47b..6154997 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![PyPI](https://img.shields.io/pypi/v/aspose-barcode-cloud)](https://pypi.org/project/aspose-barcode-cloud/) - API version: 3.0 -- Package version: 24.11.0 +- Package version: 24.12.0 ## Demo applications diff --git a/aspose_barcode_cloud/api_client.py b/aspose_barcode_cloud/api_client.py index cb51ac7..75e3151 100644 --- a/aspose_barcode_cloud/api_client.py +++ b/aspose_barcode_cloud/api_client.py @@ -60,13 +60,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook self.rest_client = RESTClientObject(configuration) self.default_headers = { "x-aspose-client": "python sdk", - "x-aspose-client-version": "24.11.0", + "x-aspose-client-version": "24.12.0", } if header_name is not None: self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = "Aspose-Barcode-SDK/24.11.0/python" + self.user_agent = "Aspose-Barcode-SDK/24.12.0/python" def __del__(self): self.rest_client.close() diff --git a/aspose_barcode_cloud/configuration.py b/aspose_barcode_cloud/configuration.py index dd3d030..4e0cab5 100644 --- a/aspose_barcode_cloud/configuration.py +++ b/aspose_barcode_cloud/configuration.py @@ -258,7 +258,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: 3.0\n" - "SDK Package Version: 24.11.0".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 24.12.0".format(env=sys.platform, pyversion=sys.version) ) @staticmethod diff --git a/setup.py b/setup.py index 5b1650d..b88b72e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages NAME = "aspose-barcode-cloud" -VERSION = "24.11.0" +VERSION = "24.12.0" # To install the library, run the following # # python setup.py install @@ -42,7 +42,7 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.13" ], keywords=[ "Barcode-Scan", From ab8c32eb2a53f4995a042770a475e61bffae53ec Mon Sep 17 00:00:00 2001 From: Ivan Kamkin <234-Ivan.Kamkin@users.noreply.git.saltov.dynabic.com> Date: Sat, 21 Dec 2024 12:47:10 +0500 Subject: [PATCH 2/2] setup.py formatted --- Makefile | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c2ad1a..d1c2add 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ dist: .PHONY: format format: - black --line-length=120 -v $(SRC) tests/ example.py scripts/ + black --line-length=120 -v $(SRC) tests/ scripts/ *.py .PHONY: format_doc format_doc: diff --git a/setup.py b/setup.py index b88b72e..67f3c69 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13" + "Programming Language :: Python :: 3.13", ], keywords=[ "Barcode-Scan",