diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b7c9dacc..af718e59 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"2.0.0"} +{".":"1.4.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b8e172a..b995a173 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog -## [2.0.0](https://github.com/spotify/confidence-sdk-swift/compare/1.3.1...2.0.0) (2025-06-30) +## [1.4.0](https://github.com/spotify/confidence-sdk-swift/compare/1.3.1...1.4.0) (2025-06-30) ### ⚠ BREAKING CHANGES -* fix: Restore ConfidenceStruct evals, align Dictionary evals ([#205](https://github.com/spotify/confidence-sdk-swift/issues/205)) +* fix: Restore ConfidenceStruct evals, align Dictionary evals ([#205](https://github.com/spotify/confidence-sdk-swift/issues/205)). Null values from remote variants are now evaluated using the client-side default value. ### 🐛 Bug Fixes diff --git a/README.md b/README.md index a78fa266..9de36efc 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Functionalities: In the dependencies section of Package.swift add: ```swift -.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "2.0.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "1.4.0") ``` diff --git a/Sources/Confidence/Confidence.swift b/Sources/Confidence/Confidence.swift index a229770e..e1e94ed2 100644 --- a/Sources/Confidence/Confidence.swift +++ b/Sources/Confidence/Confidence.swift @@ -468,7 +468,7 @@ extension Confidence { timeoutIntervalForRequest: timeout) let metadata = ConfidenceMetadata( name: sdkId, - version: "2.0.0") // x-release-please-version + version: "1.4.0") // x-release-please-version let uploader = RemoteConfidenceClient( options: options, metadata: metadata, diff --git a/Sources/ConfidenceProvider/README.md b/Sources/ConfidenceProvider/README.md index 987202f0..dd6e894b 100644 --- a/Sources/ConfidenceProvider/README.md +++ b/Sources/ConfidenceProvider/README.md @@ -8,7 +8,7 @@ If you want to use OpenFeature, an OpenFeature Provider for the [OpenFeature SDK In the dependencies section of Package.swift add: ```swift -.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "2.0.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "1.4.0") ```