Skip to content

Commit f3f4d48

Browse files
Merge branch 'master' into release
2 parents a369f7c + 6373011 commit f3f4d48

File tree

7 files changed

+23
-3
lines changed

7 files changed

+23
-3
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ 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.11
17+
18+
19+
1620
## Enhancements in Version 21.10
1721

1822
- Removed 'GraphicsQualityOptions' image save option as it no longer supported.
@@ -171,7 +175,7 @@ Add this dependency to your project's POM:
171175
<dependency>
172176
<groupId>com.aspose</groupId>
173177
<artifactId>aspose-words-cloud</artifactId>
174-
<version>21.10.0</version>
178+
<version>21.11.0</version>
175179
</dependency>
176180
</dependencies>
177181
```

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>21.10.0</version>
7+
<version>21.11.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
@@ -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.10";
59+
private String clientVersion = "21.11";
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,10 @@ public enum StyleIdentifierEnum {
424424
LISTTABLE6COLORFULACCENT6("ListTable6ColorfulAccent6"),
425425
LISTTABLE7COLORFULACCENT6("ListTable7ColorfulAccent6"),
426426
SMARTLINK("SmartLink"),
427+
MENTION("Mention"),
428+
SMARTHYPERLINK("SmartHyperlink"),
429+
HASHTAG("Hashtag"),
430+
UNRESOLVEDMENTION("UnresolvedMention"),
427431
USER("User"),
428432
NIL("Nil");
429433

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,10 @@ public enum StyleIdentifierEnum {
625625
LISTTABLE6COLORFULACCENT6("ListTable6ColorfulAccent6"),
626626
LISTTABLE7COLORFULACCENT6("ListTable7ColorfulAccent6"),
627627
SMARTLINK("SmartLink"),
628+
MENTION("Mention"),
629+
SMARTHYPERLINK("SmartHyperlink"),
630+
HASHTAG("Hashtag"),
631+
UNRESOLVEDMENTION("UnresolvedMention"),
628632
USER("User"),
629633
NIL("Nil");
630634

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,10 @@ public enum StyleIdentifierEnum {
424424
LISTTABLE6COLORFULACCENT6("ListTable6ColorfulAccent6"),
425425
LISTTABLE7COLORFULACCENT6("ListTable7ColorfulAccent6"),
426426
SMARTLINK("SmartLink"),
427+
MENTION("Mention"),
428+
SMARTHYPERLINK("SmartHyperlink"),
429+
HASHTAG("Hashtag"),
430+
UNRESOLVEDMENTION("UnresolvedMention"),
427431
USER("User"),
428432
NIL("Nil");
429433

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,10 @@ public enum StyleIdentifierEnum {
471471
LISTTABLE6COLORFULACCENT6("ListTable6ColorfulAccent6"),
472472
LISTTABLE7COLORFULACCENT6("ListTable7ColorfulAccent6"),
473473
SMARTLINK("SmartLink"),
474+
MENTION("Mention"),
475+
SMARTHYPERLINK("SmartHyperlink"),
476+
HASHTAG("Hashtag"),
477+
UNRESOLVEDMENTION("UnresolvedMention"),
474478
USER("User"),
475479
NIL("Nil");
476480

0 commit comments

Comments
 (0)