Skip to content

Commit 62fca25

Browse files
authored
Merge pull request #63 from aspose-pdf-cloud/develop
update to 23.11
2 parents a5c8fb9 + c48ab20 commit 62fca25

File tree

4 files changed

+9
-23
lines changed

4 files changed

+9
-23
lines changed

README.md

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,10 @@ 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 23.10
34-
- Support of reading common info of password protected PDF in GetDocument API.
35-
- Support stamp password protected document using DeleteDocumentStamps API method.
36-
- Support stamp password protected document using DeleteStamp API method.
37-
- Support stamp password protected document using PostDocumentPageNumberStamps API method.
38-
- Support stamp password protected document using PostPageImageStamps API method.
39-
- Support stamp password protected document using PostPageTextStamps API method.
40-
- Support stamp password protected document using GetPageStamps API method.
41-
- Support stamp password protected document using GetDocumentStamps API method.
42-
- Support stamp password protected document using PostPagePdfPageStamps API method.
43-
- Support stamp password protected document using DeletePageStamps API method.
44-
- Develop a method to add an attachment file to a PDF document.
33+
## Enhancements in Version 23.11
34+
- Support to Convert Password Protected PDF Documents.
4535
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
4636

47-
## Bugs fixed in Version 23.10
48-
- Aspose.PDF Cloud PostFlattenDocument API Issue.
49-
- The GetPages API throws timeout error for PDF files larger than 10 Mb.
50-
5137
## Installation
5238
To install the API client library to your local Maven repository, simply execute:
5339

@@ -70,7 +56,7 @@ Add this dependency to your project's POM:
7056
<dependency>
7157
<groupId>com.aspose</groupId>
7258
<artifactId>aspose-cloud-pdf</artifactId>
73-
<version>23.10.0</version>
59+
<version>23.11.0</version>
7460
<scope>compile</scope>
7561
</dependency>
7662
```
@@ -79,7 +65,7 @@ Add this dependency to your project's POM:
7965
Add this dependency to your project's build file:
8066

8167
```groovy
82-
compile "com.aspose:aspose-cloud-pdf:23.10.0"
68+
compile "com.aspose:aspose-cloud-pdf:23.11.0"
8369
```
8470

8571
### Others
@@ -89,7 +75,7 @@ At first generate the JAR by executing:
8975

9076
Then manually install the following JARs:
9177

92-
* target/aspose-cloud-pdf-23.10.0.jar
78+
* target/aspose-cloud-pdf-23.11.0.jar
9379
* target/lib/*.jar
9480

9581
## Getting Started

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '23.10.0'
23+
version = '23.11.0'
2424

2525
buildscript {
2626
repositories {
@@ -84,7 +84,7 @@ dependencies {
8484
publish {
8585
groupId = 'com.aspose'
8686
artifactId = 'aspose-pdf-cloud'
87-
publishVersion = '23.10.0'
87+
publishVersion = '23.11.0'
8888
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
8989
licences = ['MIT']
9090
website = 'https://products.aspose.cloud/pdf/cloud'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>aspose-pdf-cloud</artifactId>
77
<packaging>jar</packaging>
88
<name>aspose-pdf-cloud</name>
9-
<version>23.10.0</version>
9+
<version>23.11.0</version>
1010
<url>https://www.aspose.cloud/</url>
1111
<description>Aspose.PDF Cloud is a REST API for creating and editing PDF files.
1212
Most popular features proposed by Aspose.PDF Cloud: PDF to Word, Convert PDF to Image, Merge PDF, Split PDF, Add Images to PDF, Rotate PDF.

src/main/java/com/aspose/asposecloudpdf/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public ApiClient() {
9292

9393
// Add custom headers
9494
addDefaultHeader("x-aspose-client", "java sdk");
95-
addDefaultHeader("x-aspose-client-version", "23.10.0");
95+
addDefaultHeader("x-aspose-client-version", "23.11.0");
9696

9797
// PDFCLOUD-418 Set default Connect Timeout
9898
setConnectTimeout(5 * 60 * 1000);

0 commit comments

Comments
 (0)