Skip to content

Commit 288631d

Browse files
authored
Merge pull request #79 from aspose-pdf-cloud/develop
update to 25.3
2 parents 43c3520 + 1f48b57 commit 288631d

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

.devcontainer/devcontainer.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "Java",
3+
"image": "mcr.microsoft.com/devcontainers/java:8",
4+
"features": {
5+
"ghcr.io/devcontainers/features/java:1.6.2": {
6+
"version": "none",
7+
"installMaven": "true",
8+
"installGradle": "true",
9+
"gradleVersion": "6.9.1"
10+
}
11+
},
12+
"workspaceFolder": "/SDKs/Java",
13+
"workspaceMount": "source=${localWorkspaceFolder},target=/SDKs/Java,type=bind,consistency=cached",
14+
"mounts": [
15+
"source=${localWorkspaceFolder}/../../Settings,target=/Settings,type=bind,consistency=cached"
16+
]
17+
}

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +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 25.2
33+
## Enhancements in Version 25.3
3434
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
35+
3536
## Installation
3637
To install the API client library to your local Maven repository, simply execute:
3738

@@ -54,7 +55,7 @@ Add this dependency to your project's POM:
5455
<dependency>
5556
<groupId>com.aspose</groupId>
5657
<artifactId>aspose-cloud-pdf</artifactId>
57-
<version>25.2.0</version>
58+
<version>25.3.0</version>
5859
<scope>compile</scope>
5960
</dependency>
6061
```
@@ -63,7 +64,7 @@ Add this dependency to your project's POM:
6364
Add this dependency to your project's build file:
6465

6566
```groovy
66-
compile "com.aspose:aspose-cloud-pdf:25.2.0"
67+
compile "com.aspose:aspose-cloud-pdf:25.3.0"
6768
```
6869

6970
### Others
@@ -73,7 +74,7 @@ At first generate the JAR by executing:
7374

7475
Then manually install the following JARs:
7576

76-
* target/aspose-cloud-pdf-25.2.0.jar
77+
* target/aspose-cloud-pdf-25.3.0.jar
7778
* target/lib/*.jar
7879

7980
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
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 = '25.2.0'
23+
version = '25.3.0'
2424

2525
buildscript {
2626
repositories {

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>25.2.0</version>
9+
<version>25.3.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
@@ -94,7 +94,7 @@ public ApiClient() {
9494

9595
// Add custom headers
9696
addDefaultHeader("x-aspose-client", "java sdk");
97-
addDefaultHeader("x-aspose-client-version", "25.2.0");
97+
addDefaultHeader("x-aspose-client-version", "25.3.0");
9898

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

src/test/java/com/aspose/asposecloudpdf/api/ImagesTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ public void getImageExtractAsPngTest() throws ApiException
476476
@Test
477477
public void getImageExtractAsSvgTest() throws ApiException
478478
{
479-
final String name = "Alfa.pdf";
479+
final String name = "alfa.pdf";
480480
th.uploadFile(name);
481481

482482
int pageNumber = 1;

src/test/java/com/aspose/asposecloudpdf/api/TestHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class TestHelper {
1515
public static PdfApi pdfApi;
1616
public static String tempFolder = "TempPdfCloud";
1717
public static String testDataFolder = "testData";
18-
public static String setupFile = "..\\..\\Settings\\servercreds.json";
18+
public static String setupFile = "../../Settings/servercreds.json";
1919

2020
class ApiCreds{
2121
public Boolean SelfHost = false;

0 commit comments

Comments
 (0)