diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f148fd1d..8dc50697 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.1.4"} +{".":"0.1.5"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5566b1a9..876f566a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.1.5](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.4...0.1.5) (2024-04-09) + + +### ✨ New Features + +* Add ConfidenceValue ([#84](https://github.com/spotify/confidence-openfeature-provider-swift/issues/84)) ([8de4b78](https://github.com/spotify/confidence-openfeature-provider-swift/commit/8de4b7805378866023e939aec39c71a78ba771fe)) + + +### 📚 Documentation + +* Add apply documentation note ([#80](https://github.com/spotify/confidence-openfeature-provider-swift/issues/80)) ([1bd9525](https://github.com/spotify/confidence-openfeature-provider-swift/commit/1bd9525e5e0a7d40834aba7bc962225978a36f91)) + + +### 🔄 Refactoring + +* Add Confidence Library scaffolding ([#83](https://github.com/spotify/confidence-openfeature-provider-swift/issues/83)) ([2e49e23](https://github.com/spotify/confidence-openfeature-provider-swift/commit/2e49e2370d29d63450cc094894743fae92914df5)) + ## [0.1.4](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.3...0.1.4) (2024-02-08) diff --git a/README.md b/README.md index aaa25f5d..d617caa4 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.4") +.package(url: "git@github.com:spotify/confidence-openfeature-provider-swift.git", from: "0.1.5") ``` diff --git a/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift b/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift index e224e623..fae5478f 100644 --- a/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift +++ b/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift @@ -48,7 +48,7 @@ public class ConfidenceFeatureProvider: FeatureProvider { /// Initialize the Provider via a `Confidence` object. public init(confidence: Confidence) { - let metadata = ConfidenceMetadata(version: "0.1.4") // x-release-please-version + let metadata = ConfidenceMetadata(version: "0.1.5") // x-release-please-version let options = ConfidenceClientOptions( credentials: ConfidenceClientCredentials.clientSecret(secret: confidence.clientSecret), timeout: confidence.timeout, @@ -430,7 +430,7 @@ extension ConfidenceFeatureProvider { extension ConfidenceFeatureProvider { public struct Builder { var options: ConfidenceClientOptions - let metadata = ConfidenceMetadata(version: "0.1.4") // x-release-please-version + let metadata = ConfidenceMetadata(version: "0.1.5") // x-release-please-version var session: URLSession? var localOverrides: [String: LocalOverride] = [:] var storage: Storage = DefaultStorage.resolverFlagsCache()