Skip to content

Commit 3c800ff

Browse files
Merge branch 'master' into release
2 parents a905be2 + 57c73cc commit 3c800ff

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
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 21.5
17+
18+
- Update dependencies in sdk
19+
20+
1621
## Enhancements in Version 21.4
1722

1823
- Removed obsolete pdf save option 'EscapeUri'
@@ -136,7 +141,7 @@ Add this dependency to your project's POM:
136141
<dependency>
137142
<groupId>com.aspose</groupId>
138143
<artifactId>aspose-words-cloud</artifactId>
139-
<version>21.4.0</version>
144+
<version>21.5.0</version>
140145
</dependency>
141146
</dependencies>
142147
```

pom.xml

Lines changed: 3 additions & 5 deletions
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>21.4.0</version>
7+
<version>21.5.0</version>
88
<url>https://www.aspose.cloud/</url>
99
<description>Aspose Words Java SDK</description>
1010
<scm>
@@ -43,7 +43,7 @@
4343
<plugins>
4444
<plugin>
4545
<artifactId>maven-source-plugin</artifactId>
46-
<version>2.1.2</version>
46+
<version>3.2.0</version>
4747
<executions>
4848
<execution>
4949
<phase>deploy</phase>
@@ -79,7 +79,7 @@
7979
<plugin>
8080
<groupId>org.apache.maven.plugins</groupId>
8181
<artifactId>maven-surefire-plugin</artifactId>
82-
<version>2.12</version>
82+
<version>3.0.0-M1</version>
8383
<configuration>
8484
<systemProperties>
8585
<property>
@@ -88,8 +88,6 @@
8888
</property>
8989
</systemProperties>
9090
<argLine>-Xms512m -Xmx1500m</argLine>
91-
<parallel>methods</parallel>
92-
<forkMode>pertest</forkMode>
9391
</configuration>
9492
</plugin>
9593
<plugin>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class ApiClient {
5656
private String apiVersion = "v4.0";
5757
private String baseUrl = "https://api.aspose.cloud";
5858
private String basePath = baseUrl + "/" + apiVersion;
59-
private String clientVersion = "21.4";
59+
private String clientVersion = "21.5";
6060
private boolean debugging = false;
6161
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
6262
private String tempFolderPath = null;

src/main/java/com/aspose/words/cloud/model/Font.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ public enum StyleIdentifierEnum {
423423
LISTTABLE5DARKACCENT6("ListTable5DarkAccent6"),
424424
LISTTABLE6COLORFULACCENT6("ListTable6ColorfulAccent6"),
425425
LISTTABLE7COLORFULACCENT6("ListTable7ColorfulAccent6"),
426+
SMARTLINK("SmartLink"),
426427
USER("User"),
427428
NIL("Nil");
428429

src/main/java/com/aspose/words/cloud/model/ParagraphFormatBase.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,7 @@ public enum StyleIdentifierEnum {
624624
LISTTABLE5DARKACCENT6("ListTable5DarkAccent6"),
625625
LISTTABLE6COLORFULACCENT6("ListTable6ColorfulAccent6"),
626626
LISTTABLE7COLORFULACCENT6("ListTable7ColorfulAccent6"),
627+
SMARTLINK("SmartLink"),
627628
USER("User"),
628629
NIL("Nil");
629630

src/main/java/com/aspose/words/cloud/model/Style.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ public enum StyleIdentifierEnum {
423423
LISTTABLE5DARKACCENT6("ListTable5DarkAccent6"),
424424
LISTTABLE6COLORFULACCENT6("ListTable6ColorfulAccent6"),
425425
LISTTABLE7COLORFULACCENT6("ListTable7ColorfulAccent6"),
426+
SMARTLINK("SmartLink"),
426427
USER("User"),
427428
NIL("Nil");
428429

src/main/java/com/aspose/words/cloud/model/TableProperties.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,7 @@ public enum StyleIdentifierEnum {
470470
LISTTABLE5DARKACCENT6("ListTable5DarkAccent6"),
471471
LISTTABLE6COLORFULACCENT6("ListTable6ColorfulAccent6"),
472472
LISTTABLE7COLORFULACCENT6("ListTable7ColorfulAccent6"),
473+
SMARTLINK("SmartLink"),
473474
USER("User"),
474475
NIL("Nil");
475476

0 commit comments

Comments
 (0)