Skip to content

Commit b755ced

Browse files
Merge branch 'master' into release
2 parents 2a39c98 + 42b9dd6 commit b755ced

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ This repository contains Aspose.Words Cloud SDK for Java source code. This SDK a
1313
* Watermarks and protection
1414
* Full read & write access to Document Object Model, including sections, paragraphs, text, images, tables, headers/footers and many others
1515

16+
## Enhancements in Version 24.5
17+
18+
- Added the support of multistorage operations. Saving a file as a result of an operation can be performed in a specific storage, when, used file path in the next format '@storage:path/to/file.doc'.
19+
20+
1621
## Enhancements in Version 24.4
1722

1823
- Added the 'MergeWithNext' method to merge a section with the next one.
@@ -339,7 +344,7 @@ Add this dependency to your project's POM:
339344
<dependency>
340345
<groupId>com.aspose</groupId>
341346
<artifactId>aspose-words-cloud</artifactId>
342-
<version>24.4.0</version>
347+
<version>24.5.0</version>
343348
</dependency>
344349
</dependencies>
345350
```

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>aspose-words-cloud</artifactId>
55
<packaging>jar</packaging>
66
<name>AsposeWordsCloud</name>
7-
<version>24.4.0</version>
7+
<version>24.5.0</version>
88
<url>https://www.aspose.cloud/</url>
99
<description>Aspose Words Java SDK</description>
1010
<scm>

src/main/java/com/aspose/words/cloud/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class ApiClient {
5959
private String apiVersion = "v4.0";
6060
private String baseUrl = "https://api.aspose.cloud";
6161
private String basePath = baseUrl + "/" + apiVersion;
62-
private String clientVersion = "24.4";
62+
private String clientVersion = "24.5";
6363
private boolean debugging = false;
6464
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
6565
private String tempFolderPath = null;

src/test/java/com/aspose/words/cloud/api/mailMerge/TestExecuteMailMerge.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void testExecuteMailMergeOnline() throws ApiException, MessagingException
6969
requestTemplate,
7070
requestData,
7171
null,
72-
null,
72+
true,
7373
null,
7474
null
7575
);
@@ -102,7 +102,7 @@ public void testExecuteMailMerge() throws ApiException, MessagingException, IOEx
102102
null,
103103
null,
104104
null,
105-
false,
105+
true,
106106
null,
107107
null,
108108
null,

0 commit comments

Comments
 (0)