diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f2ae8cb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +## 1.0.0-test.1 (2022-08-19) + + +### Features + +* create Go SDK ([a5e03b5](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/a5e03b5b1ad5e58441d88faf992f5f6e08033d55)) +* support passing region ([1ba2e94](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/1ba2e941ae8fe65abd706f7e5506953b03cde9ab)) diff --git a/config.json b/config.json index c7eb513..ef15328 100644 --- a/config.json +++ b/config.json @@ -3,5 +3,5 @@ "gitUserId": "fingerprintjs", "packageName": "sdk", "packageUrl": "https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk", - "packageVersion": "0.0.1" + "packageVersion": "1.0.0-test.1" } \ No newline at end of file diff --git a/sdk/configuration.go b/sdk/configuration.go index 48f601b..7b8dfa1 100644 --- a/sdk/configuration.go +++ b/sdk/configuration.go @@ -93,7 +93,7 @@ func (c *Configuration) AddDefaultHeader(key string, value string) { func NewConfiguration() *Configuration { cfg := &Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "Swagger-Codegen/0.0.1/go", + UserAgent: "Swagger-Codegen/1.0.0-test.1/go", region: RegionUS, } cfg.basePath = resolveBasePath(cfg.region)