From 251fae65ee45682414835d68093ee8b38e20fa4b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 15:33:48 +0100 Subject: [PATCH] chore(main): release 0.1.4 (#76) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- .../ConfidenceFeatureProvider.swift | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b044596..f148fd1d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.1.3"} +{".":"0.1.4"} diff --git a/CHANGELOG.md b/CHANGELOG.md index e406940f..5566b1a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.4](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.3...0.1.4) (2024-02-08) + + +### ๐Ÿ› Bug Fixes + +* change STALE reason in case of context change ([#79](https://github.com/spotify/confidence-openfeature-provider-swift/issues/79)) ([9f5c91f](https://github.com/spotify/confidence-openfeature-provider-swift/commit/9f5c91feace22e227db63776a8808656fd926734)) +* Remove extra slash in URL ([#74](https://github.com/spotify/confidence-openfeature-provider-swift/issues/74)) ([1f33e21](https://github.com/spotify/confidence-openfeature-provider-swift/commit/1f33e21954bf2fd1e540dd30418bdfdb432c2a8c)) +* Remove STALE event ([#78](https://github.com/spotify/confidence-openfeature-provider-swift/issues/78)) ([485d09f](https://github.com/spotify/confidence-openfeature-provider-swift/commit/485d09f26a96fda0b2972f0c3d14f7b2e1ad12e3)) + + +### ๐Ÿงน Chore + +* Update CODEOWNERS ([#75](https://github.com/spotify/confidence-openfeature-provider-swift/issues/75)) ([500d84e](https://github.com/spotify/confidence-openfeature-provider-swift/commit/500d84ecc4c357f0239e850cf318f18c2299cca7)) + ## [0.1.3](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.2...0.1.3) (2024-01-30) diff --git a/README.md b/README.md index 6ca86a73..4900df79 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ the relevant OpenFeature SDK dependency manually. In the dependencies section of Package.swift add: ```swift -.package(url: "git@github.com:spotify/confidence-openfeature-provider-swift.git", from: "0.1.3") +.package(url: "git@github.com:spotify/confidence-openfeature-provider-swift.git", from: "0.1.4") ``` diff --git a/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift b/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift index c47dc44f..8b41fe16 100644 --- a/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift +++ b/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift @@ -402,7 +402,7 @@ extension ConfidenceFeatureProvider { extension ConfidenceFeatureProvider { public struct Builder { var options: ConfidenceClientOptions - let metadata = ConfidenceMetadata(version: "0.1.3") // x-release-please-version + let metadata = ConfidenceMetadata(version: "0.1.4") // x-release-please-version var session: URLSession? var localOverrides: [String: LocalOverride] = [:] var storage: Storage = DefaultStorage.resolverFlagsCache()