diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 305c1509..57e0617c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.2.0"} +{".":"0.2.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0de51cb2..b64e2e7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## [0.2.1](https://github.com/spotify/confidence-sdk-swift/compare/0.2.0...0.2.1) (2024-05-29) + + +### 🐛 Bug Fixes + +* Improved keys and remove typo ([#127](https://github.com/spotify/confidence-sdk-swift/issues/127)) ([f31fe85](https://github.com/spotify/confidence-sdk-swift/commit/f31fe853f06755e1df664e9ea2f871d685228383)) + + +### ✨ New Features + +* add functionality to manual flush events ([#122](https://github.com/spotify/confidence-sdk-swift/issues/122)) ([475df55](https://github.com/spotify/confidence-sdk-swift/commit/475df558f661e63acbbe361541a422216b17a788)) +* introduce a writeQueue for event tracking ([#124](https://github.com/spotify/confidence-sdk-swift/issues/124)) ([a49a393](https://github.com/spotify/confidence-sdk-swift/commit/a49a39387d82a0a7ad444a882a7f1fba6a592eab)) +* LifecycleProducer events are emitted immediately ([#131](https://github.com/spotify/confidence-sdk-swift/issues/131)) ([accaaa3](https://github.com/spotify/confidence-sdk-swift/commit/accaaa323270e9f7bcf55d3c69ded2f900a530cd)) + + +### 📚 Documentation + +* update readme to cover Confidence APIs ([#121](https://github.com/spotify/confidence-sdk-swift/issues/121)) ([4962baf](https://github.com/spotify/confidence-sdk-swift/commit/4962baf8f1b24165c4149ef6630ddf639508c500)) + + +### 🔄 Refactoring + +* `context` container in event payload ([#130](https://github.com/spotify/confidence-sdk-swift/issues/130)) ([a9d41fa](https://github.com/spotify/confidence-sdk-swift/commit/a9d41fae6646a1381874f46e8708b2475c6b026e)) +* app-launched no msg ([91604eb](https://github.com/spotify/confidence-sdk-swift/commit/91604eb97f68d88089c04343a54b34af8fd37441)) +* from "message" to "data" ([#132](https://github.com/spotify/confidence-sdk-swift/issues/132)) ([f85dc9b](https://github.com/spotify/confidence-sdk-swift/commit/f85dc9ba6d13ac65260ab288c3ee26dc0af723c5)) +* No message in `app-launched` ([#128](https://github.com/spotify/confidence-sdk-swift/issues/128)) ([91604eb](https://github.com/spotify/confidence-sdk-swift/commit/91604eb97f68d88089c04343a54b34af8fd37441)) +* visitor id is default ([#129](https://github.com/spotify/confidence-sdk-swift/issues/129)) ([873e6b7](https://github.com/spotify/confidence-sdk-swift/commit/873e6b722eb94b1c463cef4d0bb62428fdbcfedb)) + ## [0.2.0](https://github.com/spotify/confidence-sdk-swift/compare/0.1.4...0.2.0) (2024-05-10) diff --git a/README.md b/README.md index b2cd0512..a4f3e5e6 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.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "0.2.1") ``` diff --git a/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift b/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift index b3e1a8d9..5319156a 100644 --- a/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift +++ b/Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift @@ -32,7 +32,7 @@ public class ConfidenceFeatureProvider: FeatureProvider { ) { let metadata = ConfidenceMetadata( name: "SDK_ID_SWIFT_PROVIDER", - version: "0.2.0") // x-release-please-version + version: "0.2.1") // x-release-please-version self.metadata = Metadata(name: metadata.name) self.initializationStrategy = initializationStrategy self.confidence = confidence diff --git a/Sources/ConfidenceProvider/README.md b/Sources/ConfidenceProvider/README.md index e53f46a6..f0f9d1a0 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.0") +.package(url: "git@github.com:spotify/confidence-sdk-swift.git", from: "0.2.1") ```