Skip to content

Commit 1017593

Browse files
Merge branch 'master' into release
2 parents 760338c + be835ca commit 1017593

File tree

731 files changed

+742
-733
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

731 files changed

+742
-733
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ 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 23.1
17+
18+
- Various changes related to stability and performance
19+
20+
21+
## Enhancements in Version 22.12
22+
23+
- Various changes related to stability and performance
24+
25+
1626
## Enhancements in Version 22.11
1727

1828
- Added 'EmbedAttachments' property for PdfSaveOptionsData class.
@@ -68,7 +78,6 @@ This repository contains Aspose.Words Cloud SDK for Java source code. This SDK a
6878
- Online methods returns the dictionary of files with included original filename as key instead of single file content in responses.
6979
- Parameters contained sensitive data should be passed in encrypted form. Names of the parameters have 'encrypted' prefix.
7080
- Added Encrypt method to encrypt data on the API public key. Use it to prepare values for parameters required encrypted data.
71-
- GetPublicKey method is not billable.
7281
- Changed type of enumerations for members of SaveOptionsData and other inherited classes from string to enum.
7382

7483

@@ -256,7 +265,7 @@ Add this dependency to your project's POM:
256265
<dependency>
257266
<groupId>com.aspose</groupId>
258267
<artifactId>aspose-words-cloud</artifactId>
259-
<version>22.12.0</version>
268+
<version>23.1.0</version>
260269
</dependency>
261270
</dependencies>
262271
```

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>22.12.0</version>
7+
<version>23.1.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/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiCallback.java">
4-
* Copyright (c) 2022 Aspose.Words for Cloud
4+
* Copyright (c) 2023 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiClient.java">
4-
* Copyright (c) 2022 Aspose.Words for Cloud
4+
* Copyright (c) 2023 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -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 = "22.12";
62+
private String clientVersion = "23.1";
6363
private boolean debugging = false;
6464
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
6565
private String tempFolderPath = null;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiException.java">
4-
* Copyright (c) 2022 Aspose.Words for Cloud
4+
* Copyright (c) 2023 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiLoggingInterceptor.java">
4-
* Copyright (c) 2022 Aspose.Words for Cloud
4+
* Copyright (c) 2023 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ApiResponse.java">
4-
* Copyright (c) 2022 Aspose.Words for Cloud
4+
* Copyright (c) 2023 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="ChildRequestContent.java">
4-
* Copyright (c) 2022 Aspose.Words for Cloud
4+
* Copyright (c) 2023 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="Configuration.java">
4-
* Copyright (c) 2022 Aspose.Words for Cloud
4+
* Copyright (c) 2023 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="EncryptorFactory.java">
4-
* Copyright (c) 2022 Aspose.Words for Cloud
4+
* Copyright (c) 2023 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)