Skip to content

Commit 751ad8d

Browse files
author
kirill.novinskiy@aspose.com
committed
update to 24.12
1 parent cd9dd5f commit 751ad8d

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

asposepdfcloud/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def __init__(self, app_key, app_sid, host=None, self_host=False):
8383
self.rest_client = RESTClientObject()
8484
self.default_headers = {}
8585
self.default_headers['x-aspose-client'] = 'python sdk'
86-
self.default_headers['x-aspose-client-version'] = '24.11.0'
86+
self.default_headers['x-aspose-client-version'] = '24.12.0'
8787

8888
self.self_host = self_host
8989
self.app_key = app_key

asposepdfcloud/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,5 +199,5 @@ def to_debug_report(self):
199199
"OS: {env}\n"\
200200
"Python Version: {pyversion}\n"\
201201
"Version of the API: 3.0\n"\
202-
"SDK Package Version: 24.11.0".\
202+
"SDK Package Version: 24.12.0".\
203203
format(env=sys.platform, pyversion=sys.version)

asposepdfcloud/models/pdf_a_type.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class PdfAType(object):
4545
PDFA1A = "PDFA1A"
4646
PDFA1B = "PDFA1B"
4747
PDFA3A = "PDFA3A"
48+
PDFA3B = "PDFA3B"
4849

4950
"""
5051
Attributes:

docs/PdfAType.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Value | Description
77
**PDFA1A** | **str** | "PDFA1A" | Pdf/A-1a format
88
**PDFA1B** | **str** | "PDFA1B" | Pdf/A-1b format
99
**PDFA3A** | **str** | "PDFA3A" | Pdf/A-3a format
10+
**PDFA3B** | **str** | "PDFA3B" | Pdf/A-3b format
1011

1112

1213
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

run_tests.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
echo off
2-
python -m unittest test.pdf_tests
2+
python -m unittest test.pdf_test
33
pause

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from setuptools import setup, find_packages
3333

3434
NAME = "asposepdfcloud"
35-
VERSION = "24.11.0"
35+
VERSION = "24.12.0"
3636
# To install the library, run the following
3737
#
3838
# python setup.py install

0 commit comments

Comments
 (0)