From fd0937b1e035c3b3f1d07456b3780ff8f25908b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 12:20:25 +0000 Subject: [PATCH] chore(main): release 0.1.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ README.md | 4 ++-- pkg/provider/provider.go | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e16b739..896376d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.1.4"} \ No newline at end of file +{".":"0.1.5"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 643293d..73a60b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.1.5](https://github.com/spotify/confidence-openfeature-provider-go/compare/v0.1.4...v0.1.5) (2023-11-15) + + +### ✨ New Features + +* Add SDK id and version to requests ([#33](https://github.com/spotify/confidence-openfeature-provider-go/issues/33)) ([b63d8f7](https://github.com/spotify/confidence-openfeature-provider-go/commit/b63d8f7c34efe77871a6f9d1f110513bb1d2b350)) + + +### 🧹 Chore + +* Bring back demo2 ([#30](https://github.com/spotify/confidence-openfeature-provider-go/issues/30)) ([6f0451d](https://github.com/spotify/confidence-openfeature-provider-go/commit/6f0451d2b4649ca315160eddf8d6f8ee4a792c53)) + ## [0.1.4](https://github.com/spotify/confidence-openfeature-provider-go/compare/v0.1.3...v0.1.4) (2023-09-08) diff --git a/README.md b/README.md index aba4a4b..0e37a4b 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ and get familiar with the concepts. ``` require ( - github.com/spotify/confidence-openfeature-provider-go v0.1.4 - github.com/open-feature/go-sdk v1.7.0 + github.com/spotify/confidence-openfeature-provider-go v0.1.5 + github.com/open-feature/go-sdk v0.1.5 ) ``` diff --git a/pkg/provider/provider.go b/pkg/provider/provider.go index 76a6298..293990a 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.4" // x-release-please-version + SDK_VERSION = "0.1.5" // x-release-please-version ) func NewFlagProvider(config APIConfig) (*FlagProvider, error) {