diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5e27b2c3..789edd4f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.6.3"} +{".":"0.6.4"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b5b8f68..9c54ae2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.4](https://github.com/spotify/confidence-sdk-android/compare/0.6.3...0.6.4) (2026-03-16) + + +### 🐛 Bug Fixes + +* discard stale resolve responses and add @Volatile to InMemoryCache ([#230](https://github.com/spotify/confidence-sdk-android/issues/230)) ([8fa647b](https://github.com/spotify/confidence-sdk-android/commit/8fa647b5813d9dfcbcabf7c2d9df74f1c6a53dca)) + ## [0.6.3](https://github.com/spotify/confidence-sdk-android/compare/0.6.2...0.6.3) (2026-03-06) diff --git a/README.md b/README.md index 0b9eba52..45e97274 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.3") +implementation("com.spotify.confidence:openfeature-provider-android:0.6.4") ``` -Where `0.6.3` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. +Where `0.6.4` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. @@ -146,10 +146,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.3") +implementation("com.spotify.confidence:confidence-sdk-android:0.6.4") ``` -Where `0.6.3` is the most recent version of this SDK. +Where `0.6.4` 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 4cff4d90..79c40bc0 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.3" + ext["version"] = "0.6.4" // x-release-please-end } group = project.extra["groupId"].toString()