From e3dff0a3fd32db1c6b38b7b5f44072f2277bcf47 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 12:18:03 +0000 Subject: [PATCH] chore(main): release 0.3.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 32 ++++++++++++++++++++++++++++ README.md | 2 +- Sources/Confidence/Confidence.swift | 2 +- Sources/ConfidenceProvider/README.md | 2 +- 5 files changed, 36 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 55e469be..1c861e15 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.2.4"} +{".":"0.3.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index a20e911a..ca12c654 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +## [0.3.0](https://github.com/spotify/confidence-sdk-swift/compare/0.2.4...0.3.0) (2024-07-16) + + +### ⚠ BREAKING CHANGES + +* getEvaluation doesnt throw ([#158](https://github.com/spotify/confidence-sdk-swift/issues/158)) +* decrease API surface ([#156](https://github.com/spotify/confidence-sdk-swift/issues/156)) + +### 🐛 Bug Fixes + +* handle Int32 and Int64 in defaultValue evaluations ([#162](https://github.com/spotify/confidence-sdk-swift/issues/162)) ([6bb03d5](https://github.com/spotify/confidence-sdk-swift/commit/6bb03d5e06fa4a57ee5d5356d1b925ca207ef993)) + + +### ✨ New Features + +* add timeout to fetchAndActivate ([#160](https://github.com/spotify/confidence-sdk-swift/issues/160)) ([ea18479](https://github.com/spotify/confidence-sdk-swift/commit/ea18479aea15932e5c737b17274b89e4eb550018)) + + +### 📚 Documentation + +* Add docs to public APIs ([#163](https://github.com/spotify/confidence-sdk-swift/issues/163)) ([2c4ee11](https://github.com/spotify/confidence-sdk-swift/commit/2c4ee11809e88b25713a178910232bc15a03b74c)) +* fix typo ([#161](https://github.com/spotify/confidence-sdk-swift/issues/161)) ([297658b](https://github.com/spotify/confidence-sdk-swift/commit/297658ba4d0175693d637e69643dd0f992f981a7)) +* update readme ([#153](https://github.com/spotify/confidence-sdk-swift/issues/153)) ([9e49bb0](https://github.com/spotify/confidence-sdk-swift/commit/9e49bb01c112a887c6892101c379a3764d48799e)) +* Update READMEs ([#164](https://github.com/spotify/confidence-sdk-swift/issues/164)) ([c8437ac](https://github.com/spotify/confidence-sdk-swift/commit/c8437ac41e4a91b5024732c18b94634a60092ffe)) + + +### 🔄 Refactoring + +* decrease API surface ([917743b](https://github.com/spotify/confidence-sdk-swift/commit/917743b98df4b1bbae7caa7941540cf07e7b9316)) +* decrease API surface ([#156](https://github.com/spotify/confidence-sdk-swift/issues/156)) ([917743b](https://github.com/spotify/confidence-sdk-swift/commit/917743b98df4b1bbae7caa7941540cf07e7b9316)) +* getEvaluation doesnt throw ([#158](https://github.com/spotify/confidence-sdk-swift/issues/158)) ([09f6b73](https://github.com/spotify/confidence-sdk-swift/commit/09f6b735a0c54c5b43bb7415b5fff87d48ba379e)) + ## [0.2.4](https://github.com/spotify/confidence-sdk-swift/compare/0.2.3...0.2.4) (2024-07-02) diff --git a/README.md b/README.md index 38af1637..25a58855 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.2.4") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "0.3.0") ``` diff --git a/Sources/Confidence/Confidence.swift b/Sources/Confidence/Confidence.swift index 29a83436..2213d9a0 100644 --- a/Sources/Confidence/Confidence.swift +++ b/Sources/Confidence/Confidence.swift @@ -382,7 +382,7 @@ extension Confidence { timeoutIntervalForRequest: timeout) let metadata = ConfidenceMetadata( name: sdkId, - version: "0.2.4") // x-release-please-version + version: "0.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 83f74f82..6671c53f 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.2.4") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "0.3.0") ```