Skip to content

Commit c5993c2

Browse files
Merge branch 'master' into release
2 parents a2ff040 + 5590baa commit c5993c2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

asposewordscloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,12 +356,12 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
356356

357357
self.pool = None
358358
self.rest_client = rest.RESTClientObject(configuration)
359-
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-client-version': '25.2'}
359+
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-client-version': '25.3'}
360360
if header_name is not None:
361361
self.default_headers[header_name] = header_value
362362
self.cookie = cookie
363363
# Set default User-Agent.
364-
self.user_agent = 'python sdk 25.2'
364+
self.user_agent = 'python sdk 25.3'
365365

366366
def __del__(self):
367367
if not self.pool is None:

asposewordscloud/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,6 @@ def to_debug_report(self):
262262
return "Python SDK Debug Report:\n"\
263263
"OS: {env}\n"\
264264
"Python Version: {pyversion}\n"\
265-
"Version of the API: 25.2\n"\
266-
"SDK Package Version: 25.2".\
265+
"Version of the API: 25.3\n"\
266+
"SDK Package Version: 25.3".\
267267
format(env=sys.platform, pyversion=sys.version)

asposewordscloud/models/pdf_save_options_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ def compliance(self, compliance):
805805
:param compliance: The compliance of this PdfSaveOptionsData. # noqa: E501
806806
:type: str
807807
"""
808-
allowed_values = ["Pdf17", "Pdf20", "PdfA1a", "PdfA1b", "PdfA2a", "PdfA2u", "PdfA4", "PdfA4Ua2", "PdfUa1", "PdfUa2"] # noqa: E501
808+
allowed_values = ["Pdf17", "Pdf20", "PdfA1a", "PdfA1b", "PdfA2a", "PdfA2u", "PdfA3a", "PdfA3u", "PdfA4", "PdfA4f", "PdfA4Ua2", "PdfUa1", "PdfUa2"] # noqa: E501
809809
if not compliance.isdigit():
810810
if compliance not in allowed_values:
811811
raise ValueError(

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
77
8-
OpenAPI spec version: 25.2
8+
OpenAPI spec version: 25.3
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "aspose-words-cloud"
17-
VERSION = "25.2.0"
17+
VERSION = "25.3.0"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)