Skip to content

Commit f1b9732

Browse files
ivankamkinIvan KamkinDenis-Averin
authored
Release 23.1 (#52)
* Add DotCodeEncodeMode Delete dotCodeMask Add DotCode params Add MaxiCodeEncodeMode Add HIBC decode types Version up Copyright updated * Simplify Python versions --------- Co-authored-by: Ivan Kamkin <234-Ivan.Kamkin@users.noreply.git.saltov.dynabic.com> Co-authored-by: Denis Averin <denis.averin@aspose.com>
1 parent a3cde6d commit f1b9732

90 files changed

Lines changed: 527 additions & 123 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Aspose Pty Ltd
3+
Copyright (c) 2023 Aspose Pty Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ test-example:
7272

7373
.PHONY: test-tox
7474
test-tox:
75-
tox $(SRC)
75+
python3 -m tox $(SRC)
7676

7777
.PHONY: update
7878
update:

README.md

Lines changed: 3 additions & 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: 22.12.0
8+
- Package version: 23.1.0
99

1010
## Demo applications
1111

@@ -164,6 +164,7 @@ Class | Method | HTTP request | Description
164164
- [DataMatrixParams](docs/DataMatrixParams.md)
165165
- [DecodeBarcodeType](docs/DecodeBarcodeType.md)
166166
- [DiscUsage](docs/DiscUsage.md)
167+
- [DotCodeEncodeMode](docs/DotCodeEncodeMode.md)
167168
- [DotCodeParams](docs/DotCodeParams.md)
168169
- [ECIEncodings](docs/ECIEncodings.md)
169170
- [EnableChecksum](docs/EnableChecksum.md)
@@ -181,6 +182,7 @@ Class | Method | HTTP request | Description
181182
- [ITF14BorderType](docs/ITF14BorderType.md)
182183
- [ITFParams](docs/ITFParams.md)
183184
- [MacroCharacter](docs/MacroCharacter.md)
185+
- [MaxiCodeEncodeMode](docs/MaxiCodeEncodeMode.md)
184186
- [MaxiCodeMode](docs/MaxiCodeMode.md)
185187
- [MaxiCodeParams](docs/MaxiCodeParams.md)
186188
- [ObjectExist](docs/ObjectExist.md)

aspose_barcode_cloud/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
"""
66
7-
Copyright (c) 2022 Aspose.BarCode for Cloud
7+
Copyright (c) 2023 Aspose.BarCode for Cloud
88
99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal
@@ -69,6 +69,7 @@
6969
from aspose_barcode_cloud.models.data_matrix_params import DataMatrixParams
7070
from aspose_barcode_cloud.models.decode_barcode_type import DecodeBarcodeType
7171
from aspose_barcode_cloud.models.disc_usage import DiscUsage
72+
from aspose_barcode_cloud.models.dot_code_encode_mode import DotCodeEncodeMode
7273
from aspose_barcode_cloud.models.dot_code_params import DotCodeParams
7374
from aspose_barcode_cloud.models.eci_encodings import ECIEncodings
7475
from aspose_barcode_cloud.models.enable_checksum import EnableChecksum
@@ -86,6 +87,7 @@
8687
from aspose_barcode_cloud.models.itf14_border_type import ITF14BorderType
8788
from aspose_barcode_cloud.models.itf_params import ITFParams
8889
from aspose_barcode_cloud.models.macro_character import MacroCharacter
90+
from aspose_barcode_cloud.models.maxi_code_encode_mode import MaxiCodeEncodeMode
8991
from aspose_barcode_cloud.models.maxi_code_mode import MaxiCodeMode
9092
from aspose_barcode_cloud.models.maxi_code_params import MaxiCodeParams
9193
from aspose_barcode_cloud.models.object_exist import ObjectExist

aspose_barcode_cloud/api/barcode_api.py

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

33
"""
44
5-
Copyright (c) 2022 Aspose.BarCode for Cloud
5+
Copyright (c) 2023 Aspose.BarCode for Cloud
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

aspose_barcode_cloud/api/file_api.py

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

33
"""
44
5-
Copyright (c) 2022 Aspose.BarCode for Cloud
5+
Copyright (c) 2023 Aspose.BarCode for Cloud
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

aspose_barcode_cloud/api/folder_api.py

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

33
"""
44
5-
Copyright (c) 2022 Aspose.BarCode for Cloud
5+
Copyright (c) 2023 Aspose.BarCode for Cloud
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

aspose_barcode_cloud/api/storage_api.py

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

33
"""
44
5-
Copyright (c) 2022 Aspose.BarCode for Cloud
5+
Copyright (c) 2023 Aspose.BarCode for Cloud
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

aspose_barcode_cloud/api_client.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22
"""
33
4-
Copyright (c) 2022 Aspose.BarCode for Cloud
4+
Copyright (c) 2023 Aspose.BarCode for Cloud
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal
@@ -40,7 +40,6 @@
4040
from six.moves.urllib.parse import quote
4141

4242
if not six.PY2:
43-
from typing import Union
4443
import pathlib
4544

4645
from aspose_barcode_cloud.configuration import Configuration
@@ -91,13 +90,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
9190
self.rest_client = RESTClientObject(configuration)
9291
self.default_headers = {
9392
"x-aspose-client": "python sdk",
94-
"x-aspose-client-version": "22.12.0",
93+
"x-aspose-client-version": "23.1.0",
9594
}
9695
if header_name is not None:
9796
self.default_headers[header_name] = header_value
9897
self.cookie = cookie
9998
# Set default User-Agent.
100-
self.user_agent = "Aspose-Barcode-SDK/22.12.0/python"
99+
self.user_agent = "Aspose-Barcode-SDK/23.1.0/python"
101100

102101
def __del__(self):
103102
self.rest_client.close()

aspose_barcode_cloud/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"""
44
5-
Copyright (c) 2022 Aspose.BarCode for Cloud
5+
Copyright (c) 2023 Aspose.BarCode for Cloud
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -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.12.0".format(env=sys.platform, pyversion=sys.version)
289+
"SDK Package Version: 23.1.0".format(env=sys.platform, pyversion=sys.version)
290290
)
291291

292292
@staticmethod

0 commit comments

Comments
 (0)