diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e1d78c7..173e533 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.1.6"} \ No newline at end of file +{".":"0.1.7"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ab00f09..b100be0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.1.7](https://github.com/spotify/confidence-openfeature-provider-go/compare/v0.1.6...v0.1.7) (2024-02-12) + + +### 🐛 Bug Fixes + +* add a default endpoint to the provider ([#41](https://github.com/spotify/confidence-openfeature-provider-go/issues/41)) ([c4bfe45](https://github.com/spotify/confidence-openfeature-provider-go/commit/c4bfe45d76b8fff131e795c5462d59b9a8ea2098)) +* ApiConfig constructor with region defaults ([#43](https://github.com/spotify/confidence-openfeature-provider-go/issues/43)) ([064bef2](https://github.com/spotify/confidence-openfeature-provider-go/commit/064bef291ec72a6ff3facf4a9ecc7d6377ef410d)) + + +### 📚 Documentation + +* update instructions on creating ApiConfig ([#44](https://github.com/spotify/confidence-openfeature-provider-go/issues/44)) ([dd593f6](https://github.com/spotify/confidence-openfeature-provider-go/commit/dd593f676fe7309e6b0d71e01bbf8c08a05456d2)) + ## [0.1.6](https://github.com/spotify/confidence-openfeature-provider-go/compare/v0.1.5...v0.1.6) (2023-11-22) diff --git a/README.md b/README.md index 12cfe04..8d8a581 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ and get familiar with the concepts. ``` require ( - github.com/spotify/confidence-openfeature-provider-go v0.1.6 + github.com/spotify/confidence-openfeature-provider-go v0.1.7 ) ``` diff --git a/pkg/provider/provider.go b/pkg/provider/provider.go index c048b4f..e634d8f 100755 --- a/pkg/provider/provider.go +++ b/pkg/provider/provider.go @@ -17,7 +17,7 @@ type FlagProvider struct { var ( SDK_ID = "SDK_ID_GO_PROVIDER" - SDK_VERSION = "0.1.6" // x-release-please-version + SDK_VERSION = "0.1.7" // x-release-please-version ) func NewFlagProvider(config APIConfig) (*FlagProvider, error) {