Skip to content

Commit 5df086b

Browse files
Merge branch 'master' into release
2 parents 7bab3fe + 4d59504 commit 5df086b

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate
1616
- [Convert a document to desired file format](https://docs.aspose.cloud/display/wordscloud/Convert+Document+to+Destination+Format+with+Detailed+Settings+and+Save+Result+to+Storage) along with detailed settings.
1717
- Convert an encrypted PDF document into Word document format.
1818

19+
## Enhancements in Version 24.3
20+
21+
- Added support for 'RemoveEmptyCells' option for the 'Cleanup' parameter in the insert 'MailMerge' API method.
22+
23+
1924
## Enhancements in Version 24.1
2025

2126
- Added support for InsertAfterNode in the insert API without NodePath.

asposewordscloud/api_client.py

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

348348
self.pool = None
349349
self.rest_client = rest.RESTClientObject(configuration)
350-
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-client-version': '24.2'}
350+
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-client-version': '24.3'}
351351
if header_name is not None:
352352
self.default_headers[header_name] = header_value
353353
self.cookie = cookie
354354
# Set default User-Agent.
355-
self.user_agent = 'python sdk 24.2'
355+
self.user_agent = 'python sdk 24.3'
356356

357357
def __del__(self):
358358
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: 24.2\n"\
266-
"SDK Package Version: 24.2".\
265+
"Version of the API: 24.3\n"\
266+
"SDK Package Version: 24.3".\
267267
format(env=sys.platform, pyversion=sys.version)

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: 24.2
8+
OpenAPI spec version: 24.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 = "24.2.0"
17+
VERSION = "24.3.0"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)