Skip to content

Commit

Permalink
chore(release): 1.0.0-test.5 [skip ci]
Browse files Browse the repository at this point in the history
## [1.0.0-test.5](v1.0.0-test.4...v1.0.0-test.5) (2022-08-29)

### Bug Fixes

* send API key only in headers ([92a4f88](92a4f88))
* support nil values for time.Time ([459ba4c](459ba4c))

### Documentation

* **README:** fix installation cmd typo ([2017b4c](2017b4c))
* **README:** remove unnecessary import from example ([e6759e7](e6759e7))
  • Loading branch information
semantic-release-bot committed Aug 29, 2022
1 parent 5d55b6f commit 4dcbc1a
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [1.0.0-test.5](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v1.0.0-test.4...v1.0.0-test.5) (2022-08-29)


### Bug Fixes

* send API key only in headers ([92a4f88](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/92a4f886b6876d878d9c7ca61f6b4e3af34445d6))
* support nil values for time.Time ([459ba4c](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/459ba4c8dde6c6e1428fdeb9b0c2975de1a2f1d6))


### Documentation

* **README:** fix installation cmd typo ([2017b4c](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/2017b4c890cf7d0cb6b9dd1df5a374a8af2e96a4))
* **README:** remove unnecessary import from example ([e6759e7](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/e6759e71e712cff1508fbfc88a941e68244bbd66))

## [1.0.0-test.4](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v1.0.0-test.3...v1.0.0-test.4) (2022-08-25)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Fingerprint Pro Server API provides a way for validating visitors’ data issued
This Go package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 3
- Package version: 1.0.0-test.4
- Package version: 1.0.0-test.5
- Build package: io.swagger.codegen.v3.generators.go.GoClientCodegen

## Requirements.
Expand Down
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"packageVersion": "1.0.0-test.5",
"gitRepoId": "fingerprint-pro-server-api-go-sdk",
"gitUserId": "fingerprintjs",
"packageName": "sdk",
"packageUrl": "https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk",
"packageVersion": "1.0.0-test.4"
"packageUrl": "https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk"
}
2 changes: 1 addition & 1 deletion sdk/api_fingerprint.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (a *FingerprintApiService) GetVisits(ctx context.Context, visitorId string,
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}

localVarQueryParams.Add("ii", "fingerprint-pro-server-go-sdk/1.0.0-test.4")
localVarQueryParams.Add("ii", "fingerprint-pro-server-go-sdk/1.0.0-test.5")

if localVarOptionals != nil {

Expand Down
2 changes: 1 addition & 1 deletion sdk/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/1.0.0-test.4/go",
UserAgent: "Swagger-Codegen/1.0.0-test.5/go",
region: RegionUS,
}
cfg.basePath = resolveBasePath(cfg.region)
Expand Down

0 comments on commit 4dcbc1a

Please sign in to comment.