Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 24.12 #66

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/aspose-barcode-cloud/aspose-barcode-cloud-go?label=module&sort=semver)](https://pkg.go.dev/github.com/aspose-barcode-cloud/aspose-barcode-cloud-go)

- API version: 3.0
- SDK version: 1.2411.0
- SDK version: 1.2412.0

## Demo applications

Expand Down Expand Up @@ -33,7 +33,7 @@ To use Aspose.BarCode Cloud SDK for Go you need to register an account with [Asp
1. Run `go get` command

```shell script
go get -u github.com/aspose-barcode-cloud/aspose-barcode-cloud-go@v1.2411.0
go get -u github.com/aspose-barcode-cloud/aspose-barcode-cloud-go@v1.2412.0
```

### Using GOPATH (for Go < 1.11 )
Expand Down
2 changes: 1 addition & 1 deletion barcode/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
)

const (
PACKAGE_VERSION = "1.2410.0"
PACKAGE_VERSION = "1.2412.0"
PACKAGE_NAME = "go sdk"
X_ASPOSE_CLIENT = "x-aspose-client"
X_ASPOSE_CLIENT_VERSION = "x-aspose-client-version"
Expand Down
2 changes: 1 addition & 1 deletion barcode/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func NewConfiguration() *Configuration {
cfg := &Configuration{
BasePath: "https://api.aspose.cloud/v3.0",
DefaultHeader: make(map[string]string),
UserAgent: "Aspose-Barcode-SDK/1.2410.0/go",
UserAgent: "Aspose-Barcode-SDK/1.2412.0/go",
}
return cfg
}
Expand Down
Loading