diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 789edd4f..13ffd6c0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.6.4"} +{".":"0.6.5"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c54ae2c..395353be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.5](https://github.com/spotify/confidence-sdk-android/compare/0.6.4...0.6.5) (2026-03-25) + + +### ✨ New Features + +* add X-CONFIDENCE-TELEMETRY header ([#234](https://github.com/spotify/confidence-sdk-android/issues/234)) ([5471108](https://github.com/spotify/confidence-sdk-android/commit/5471108cc904ef8649aa115710d2a5ce3af29d1a)) + ## [0.6.4](https://github.com/spotify/confidence-sdk-android/compare/0.6.3...0.6.4) (2026-03-16) diff --git a/README.md b/README.md index 45e97274..2f0d11f8 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.4") +implementation("com.spotify.confidence:openfeature-provider-android:0.6.5") ``` -Where `0.6.4` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. +Where `0.6.5` 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.4") +implementation("com.spotify.confidence:confidence-sdk-android:0.6.5") ``` -Where `0.6.4` is the most recent version of this SDK. +Where `0.6.5` 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 79c40bc0..17762561 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.4" + ext["version"] = "0.6.5" // x-release-please-end } group = project.extra["groupId"].toString()