diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 11fea0fb..7dca81b7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.0.0"} +{".":"1.0.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cd711fd..79b20ffd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.1](https://github.com/spotify/confidence-sdk-swift/compare/1.0.0...1.0.1) (2024-11-06) + + +### 🐛 Bug Fixes + +* TypeMismatch error is handled ([#170](https://github.com/spotify/confidence-sdk-swift/issues/170)) ([6a04cda](https://github.com/spotify/confidence-sdk-swift/commit/6a04cda8653dacf15b1389c7b9ece61adb031d3f)) + ## [1.0.0](https://github.com/spotify/confidence-sdk-swift/compare/0.3.0...1.0.0) (2024-11-05) diff --git a/README.md b/README.md index dd10939f..cc2a58b2 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.0.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "1.0.1") ``` diff --git a/Sources/Confidence/Confidence.swift b/Sources/Confidence/Confidence.swift index a5069082..f5e5dc75 100644 --- a/Sources/Confidence/Confidence.swift +++ b/Sources/Confidence/Confidence.swift @@ -400,7 +400,7 @@ extension Confidence { timeoutIntervalForRequest: timeout) let metadata = ConfidenceMetadata( name: sdkId, - version: "1.0.0") // x-release-please-version + version: "1.0.1") // x-release-please-version let uploader = RemoteConfidenceClient( options: options, metadata: metadata, diff --git a/Sources/ConfidenceProvider/README.md b/Sources/ConfidenceProvider/README.md index a0de5938..7bb19d00 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.0.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "1.0.1") ```