diff --git a/README.md b/README.md index d0c44a4..1f67bec 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,13 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text ## Read PDF Formats MHT, PCL, PS, XSLFO, MD -## Enhancements in Version 25.9 -- Implement PDF document page crop functionality using the Pdf.Cloud API library. +## Enhancements in Version 25.10 - A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET. +## Bugs fixed in Version 25.10 +- Method PutBookmark does not change bookmark color. +- TextReplace shows hidden text in the output file. + ## Unit Tests Aspose PDF SDK includes a suite of unit tests. These Unit Tests also serves as examples of how to use the Aspose PDF SDK. diff --git a/settings/credentials.json b/settings/credentials.json new file mode 100644 index 0000000..b806ec7 --- /dev/null +++ b/settings/credentials.json @@ -0,0 +1,6 @@ +{ + "client_secret": "YOUR_CLIENT_SECRET", + "client_id": "YOUR_CLIENT_ID", + "api_url": "https://api.aspose.cloud/v3.0", + "self_host": false +} \ No newline at end of file diff --git a/src/Aspose.Pdf.Cloud.Sdk/Client/ApiClient.cs b/src/Aspose.Pdf.Cloud.Sdk/Client/ApiClient.cs index 6b606bc..52e93be 100644 --- a/src/Aspose.Pdf.Cloud.Sdk/Client/ApiClient.cs +++ b/src/Aspose.Pdf.Cloud.Sdk/Client/ApiClient.cs @@ -241,7 +241,7 @@ private RestRequest PrepareRequest( // add custom header request.AddHeader(AsposeClientHeaderName, ".net sdk"); - request.AddHeader(AsposeClientVersionHeaderName, "25.9.0"); + request.AddHeader(AsposeClientVersionHeaderName, "25.10.0"); // add header parameter, if any foreach(var param in headerParams) diff --git a/src/Aspose.Pdf.Cloud.Sdk/Client/Configuration.cs b/src/Aspose.Pdf.Cloud.Sdk/Client/Configuration.cs index d5da58b..5f93d59 100644 --- a/src/Aspose.Pdf.Cloud.Sdk/Client/Configuration.cs +++ b/src/Aspose.Pdf.Cloud.Sdk/Client/Configuration.cs @@ -225,7 +225,7 @@ public static string ToDebugReport() .GetReferencedAssemblies() .Where(x => x.Name == "System.Core").First().Version.ToString() + "\n"; report += " Version of the API: 3.0\n"; - report += " SDK Package Version: 25.9.0\n"; + report += " SDK Package Version: 25.10.0\n"; return report; } diff --git a/src/Aspose.Pdf.Cloud.Sdk/Properties/AssemblyInfo.cs b/src/Aspose.Pdf.Cloud.Sdk/Properties/AssemblyInfo.cs index 5c29fe2..b69feee 100644 --- a/src/Aspose.Pdf.Cloud.Sdk/Properties/AssemblyInfo.cs +++ b/src/Aspose.Pdf.Cloud.Sdk/Properties/AssemblyInfo.cs @@ -28,5 +28,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("25.9.0")] -[assembly: AssemblyFileVersion("25.9.0")] +[assembly: AssemblyVersion("25.10.0")] +[assembly: AssemblyFileVersion("25.10.0")]