diff --git a/README.md b/README.md index b217919..d8b89a4 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,13 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text ## Read PDF Formats MHT, PCL, PS, XSLFO, MD -## Enhancements in Version 25.9 -- Implement PDF document page crop functionality using the Pdf.Cloud API library. +## Enhancements in Version 25.10 - A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET. +## Bugs fixed in Version 25.10 +- Method PutBookmark does not change bookmark color. +- TextReplace shows hidden text in the output file. + ## Requirements. Python 2.7 and 3.4+ diff --git a/asposepdfcloud/api_client.py b/asposepdfcloud/api_client.py index 952c7fd..5feaae7 100644 --- a/asposepdfcloud/api_client.py +++ b/asposepdfcloud/api_client.py @@ -83,7 +83,7 @@ def __init__(self, app_key, app_sid, host=None, self_host=False): self.rest_client = RESTClientObject() self.default_headers = {} self.default_headers['x-aspose-client'] = 'python sdk' - self.default_headers['x-aspose-client-version'] = '25.9.0' + self.default_headers['x-aspose-client-version'] = '25.10.0' self.self_host = self_host self.app_key = app_key diff --git a/asposepdfcloud/configuration.py b/asposepdfcloud/configuration.py index ee3e2fb..ec963a6 100644 --- a/asposepdfcloud/configuration.py +++ b/asposepdfcloud/configuration.py @@ -199,5 +199,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 3.0\n"\ - "SDK Package Version: 25.9.0".\ + "SDK Package Version: 25.10.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/settings/credentials.json b/settings/credentials.json new file mode 100644 index 0000000..b806ec7 --- /dev/null +++ b/settings/credentials.json @@ -0,0 +1,6 @@ +{ + "client_secret": "YOUR_CLIENT_SECRET", + "client_id": "YOUR_CLIENT_ID", + "api_url": "https://api.aspose.cloud/v3.0", + "self_host": false +} \ No newline at end of file diff --git a/setup.py b/setup.py index 15e951b..3039745 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ from setuptools import setup, find_packages NAME = "asposepdfcloud" -VERSION = "25.9.0" +VERSION = "25.10.0" # To install the library, run the following # # python setup.py install