diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fdd7fb64..e253e795 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.6.9"} +{".":"0.6.10"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 00751bc9..26ecb248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.10](https://github.com/spotify/confidence-sdk-android/compare/0.6.9...0.6.10) (2026-08-25) + + +### ✨ New Features + +* OpenFeature track and event delivery reliability ([#252](https://github.com/spotify/confidence-sdk-android/issues/252)) ([6fdd5b4](https://github.com/spotify/confidence-sdk-android/commit/6fdd5b4ab7d84a0ba5b6284f60ccda8b6c31836b)) + ## [0.6.9](https://github.com/spotify/confidence-sdk-android/compare/0.6.8...0.6.9) (2026-08-19) diff --git a/README.md b/README.md index 908852fd..5968ad86 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ The latest release of the SDK and the Provider is available on Maven central. Add the following dependency to your gradle file: ``` -implementation("com.spotify.confidence:openfeature-provider-android:0.6.9") +implementation("com.spotify.confidence:openfeature-provider-android:0.6.10") ``` -Where `0.6.9` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. +Where `0.6.10` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. @@ -160,10 +160,10 @@ If you want to use the Confidence SDK standalone, you can. Add the following dependency to your gradle file to use it: ``` -implementation("com.spotify.confidence:confidence-sdk-android:0.6.9") +implementation("com.spotify.confidence:confidence-sdk-android:0.6.10") ``` -Where `0.6.9` is the most recent version of this SDK. +Where `0.6.10` is the most recent version of this SDK. Released versions can be found under "Releases" within this repository. diff --git a/build.gradle.kts b/build.gradle.kts index f049c5be..1680f2c0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,7 +14,7 @@ plugins { allprojects { extra["groupId"] = "com.spotify.confidence" // x-release-please-start-version - ext["version"] = "0.6.9" + ext["version"] = "0.6.10" // x-release-please-end } group = project.extra["groupId"].toString()