diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 49a1c07e..c17c08f7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.2.0"} +{".":"1.3.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 63a46823..df1e12d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.3.0](https://github.com/spotify/confidence-sdk-swift/compare/1.2.0...1.3.0) (2025-02-07) + + +### ⚠ BREAKING CHANGES + +* restructure automatic context decorator ([#185](https://github.com/spotify/confidence-sdk-swift/issues/185)) + +### ✨ New Features + +* Adopt latest OF SDK ([#184](https://github.com/spotify/confidence-sdk-swift/issues/184)) ([652d5f0](https://github.com/spotify/confidence-sdk-swift/commit/652d5f019ecf2a16c0cf0a6eeb81a42a1d6fb986)) + + +### 🔄 Refactoring + +* restructure automatic context decorator ([#185](https://github.com/spotify/confidence-sdk-swift/issues/185)) ([3588ae8](https://github.com/spotify/confidence-sdk-swift/commit/3588ae80a3c6efe36f8eaa8fb33cb037f6dbc2f0)) + ## [1.2.0](https://github.com/spotify/confidence-sdk-swift/compare/1.1.0...1.2.0) (2024-12-10) diff --git a/README.md b/README.md index e4321945..14d45812 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: "1.2.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "1.3.0") ``` diff --git a/Sources/Confidence/Confidence.swift b/Sources/Confidence/Confidence.swift index 0c643e71..ecf09448 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: "1.2.0") // x-release-please-version + version: "1.3.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 ffe6787d..d0c46575 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: "1.2.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "1.3.0") ```