From 32d4b0566cd8140a4162bcb8102dc4c4d494373a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:27:50 +0100 Subject: [PATCH] chore(main): release 0.1.6 (#39) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- pkg/provider/provider.go | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 896376d..e1d78c7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.1.5"} \ No newline at end of file +{".":"0.1.6"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a539b..ab00f09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.1.6](https://github.com/spotify/confidence-openfeature-provider-go/compare/v0.1.5...v0.1.6) (2023-11-22) + + +### 🐛 Bug Fixes + +* Fix nested struct bug ([#37](https://github.com/spotify/confidence-openfeature-provider-go/issues/37)) ([5fb769f](https://github.com/spotify/confidence-openfeature-provider-go/commit/5fb769f3db4c00376ea4e34b510d4391f29003c5)) + + +### 📚 Documentation + +* Small cleanups and documentation ([#38](https://github.com/spotify/confidence-openfeature-provider-go/issues/38)) ([9c56b9f](https://github.com/spotify/confidence-openfeature-provider-go/commit/9c56b9fd0cd60266bf8ff44cf9606dadc92e832d)) + ## [0.1.5](https://github.com/spotify/confidence-openfeature-provider-go/compare/v0.1.4...v0.1.5) (2023-11-15) diff --git a/README.md b/README.md index 09f59ef..3ddd510 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.5 + github.com/spotify/confidence-openfeature-provider-go v0.1.6 ) ``` diff --git a/pkg/provider/provider.go b/pkg/provider/provider.go index 293990a..c048b4f 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.5" // x-release-please-version + SDK_VERSION = "0.1.6" // x-release-please-version ) func NewFlagProvider(config APIConfig) (*FlagProvider, error) {