diff --git a/README.md b/README.md index 6ebc603..d03e267 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,13 @@ These SDKs are now fully supported. If you have any questions, see any bugs or h Extract Text & Images of a PDF document online https://products.aspose.app/pdf/parser. -## 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. + ## Installation ``` go get -u github.com/aspose-pdf-cloud/aspose-pdf-cloud-go/v24 diff --git a/api_client.go b/api_client.go index 1a50fae..e6b539d 100644 --- a/api_client.go +++ b/api_client.go @@ -176,7 +176,7 @@ func (c *APIClient) prepareRequest ( // set custom header headerParams["x-aspose-client"] = "go sdk" - headerParams["x-aspose-client-version"] = "25.9.0" + headerParams["x-aspose-client-version"] = "25.10.0" // Detect postBody type and post. if postBody != nil { 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