Skip to content

Commit 7f12adb

Browse files
update to 22.4
1 parent 03e8a0b commit 7f12adb

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,9 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
3030
## Read PDF Formats
3131
MHT, PCL, PS, XSLFO, MD
3232

33-
## Enhancements in Version 22.3
34-
- PDFCLOUD-2729: Add StrikeOut, Superscript, Subscript properties to TextState.
35-
- PDFCLOUD-2623: Underline property is missing in TextState.
33+
## Enhancements in Version 22.4
3634
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3735

38-
## Bugs fixed in Version 22.3
39-
- PDFCLOUD-2714: GetFields API method not extracting PDF form fields.
40-
- PDFCLOUD-2641: PostSplitDocument returns wrong path.
41-
4236
## Requirements.
4337
Python 2.7 and 3.4+
4438

@@ -72,8 +66,9 @@ import asposepdfcloud
7266
## Get PDF Page Annotations in Python
7367
```python
7468
# Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
69+
pdf_api_client = asposepdfcloud.ApiClient('MY_CLIENT_ID', 'MY_CLIENT_SECRET')
7570

76-
pdf_api = asposepdfcloud.PdfApi('MY_CLIENT_ID', 'MY_CLIENT_SECRET')
71+
pdf_api = asposepdfcloud.PdfApi(pdf_api_client)
7772

7873
file_name = 'PdfWithAnnotations.pdf'
7974
page_number = 2

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):
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'] = '22.3.0'
86+
self.default_headers['x-aspose-client-version'] = '22.4.0'
8787

8888
self.app_key = app_key
8989
self.app_sid = app_sid

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: 22.3.0".\
202+
"SDK Package Version: 22.4.0".\
203203
format(env=sys.platform, pyversion=sys.version)

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 = "22.3.0"
35+
VERSION = "22.4.0"
3636
# To install the library, run the following
3737
#
3838
# python setup.py install

0 commit comments

Comments
 (0)