diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1c861e15..11fea0fb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.3.0"} +{".":"1.0.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index ca12c654..2cd711fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.0.0](https://github.com/spotify/confidence-sdk-swift/compare/0.3.0...1.0.0) (2024-11-05) + + +### ๐Ÿ› Bug Fixes + +* Fix warnings and prevent potential issues ([#165](https://github.com/spotify/confidence-sdk-swift/issues/165)) ([448fb93](https://github.com/spotify/confidence-sdk-swift/commit/448fb930e869d8282566f5c1abfa147a1a6611e9)) +* Make Confidence.cache thread-safe ([#167](https://github.com/spotify/confidence-sdk-swift/issues/167)) ([df2c37f](https://github.com/spotify/confidence-sdk-swift/commit/df2c37f3c5cdac3ab1bdc9d2da54b0e1e8f8a30d)) + + +### ๐Ÿงช Tests + +* date formatter in tests iOS18 ([#168](https://github.com/spotify/confidence-sdk-swift/issues/168)) ([9cab6bb](https://github.com/spotify/confidence-sdk-swift/commit/9cab6bbb3511c2672fddbe09f483795ab77ccd3f)) + ## [0.3.0](https://github.com/spotify/confidence-sdk-swift/compare/0.2.4...0.3.0) (2024-07-16) diff --git a/README.md b/README.md index 25a58855..dd10939f 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: "0.3.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "1.0.0") ``` diff --git a/Sources/Confidence/Confidence.swift b/Sources/Confidence/Confidence.swift index 83249cf4..a5069082 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: "0.3.0") // x-release-please-version + version: "1.0.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 6671c53f..a0de5938 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: "0.3.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "1.0.0") ```