From d3545d252bcba3a6e8638706bdb1a8a936ae263f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 13:49:31 +0000 Subject: [PATCH] chore(main): release 0.6.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 8 ++++---- build.gradle.kts | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 55e529da..dca84574 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.6.0"} +{".":"0.6.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b6300e3..83c836b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.6.1](https://github.com/spotify/confidence-sdk-android/compare/0.6.0...0.6.1) (2025-10-01) + + +### 🐛 Bug Fixes + +* add missing release version location ([#222](https://github.com/spotify/confidence-sdk-android/issues/222)) ([297f5c6](https://github.com/spotify/confidence-sdk-android/commit/297f5c6d862684c7a3d1c52116721298da52a8aa)) +* correct format on resolve tester base64 encoded json ([#223](https://github.com/spotify/confidence-sdk-android/issues/223)) ([bfab5e0](https://github.com/spotify/confidence-sdk-android/commit/bfab5e0e2606e09991e27b1be6f2d86067993c04)) + ## [0.6.0](https://github.com/spotify/confidence-sdk-android/compare/0.5.3...0.6.0) (2025-09-19) diff --git a/README.md b/README.md index f1990804..ab60acc8 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.0") +implementation("com.spotify.confidence:openfeature-provider-android:0.6.1") ``` -Where `0.6.0` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. +Where `0.6.1` 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.0") +implementation("com.spotify.confidence:confidence-sdk-android:0.6.1") ``` -Where `0.6.0` is the most recent version of this SDK. +Where `0.6.1` 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 bbbc5238..716ec4ca 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.0" + ext["version"] = "0.6.1" // x-release-please-end } group = project.extra["groupId"].toString()