Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 2b3dca6

Browse files
committed
Prepare for v0.20.0
1 parent ceb4016 commit 2b3dca6

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## v0.20.0
10+
- Autoconfig support for IAM, Cartel and Logging
11+
- Add ap3 region
12+
- Fallback mechanism for discovery
13+
914
## v0.19.0
1015
- [NEW] Service/config discovery
1116
- Share structs with gautocloud-connectors

cartel/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
)
2424

2525
const (
26-
libraryVersion = "0.19.0"
26+
libraryVersion = "0.20.0"
2727
userAgent = "go-hsdp-api/cartel/" + libraryVersion
2828
)
2929

iam/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type tokenType int
2727
type ContextKey string
2828

2929
const (
30-
libraryVersion = "0.19.0"
30+
libraryVersion = "0.20.0"
3131
userAgent = "go-hsdp-api/iam/" + libraryVersion
3232
loginAPIVersion = "2"
3333
ContextKeyRequestID ContextKey = "requestID"

iron/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
const (
20-
libraryVersion = "0.19.0"
20+
libraryVersion = "0.20.0"
2121
userAgent = "go-hsdp-api/iron/" + libraryVersion
2222
IronBaseURL = "https://worker-aws-us-east-1.iron.io/"
2323
)

logging/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const (
2626
// TimeFormat is the time format used for the LogTime field
2727
TimeFormat = "2006-01-02T15:04:05.000Z07:00"
2828

29-
libraryVersion = "0.19.0"
29+
libraryVersion = "0.20.0"
3030
userAgent = "go-hsdp-api/logging/" + libraryVersion
3131
)
3232

0 commit comments

Comments
 (0)