From 3d8ab6b70377355271d83d47f81aa36197f0dc93 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 May 2026 14:46:08 +0000 Subject: [PATCH] chore(main): release 0.6.9 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ README.md | 8 ++++---- build.gradle.kts | 2 +- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 665122f0..fdd7fb64 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.6.8"} +{".":"0.6.9"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5457f3..a349506c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.6.9](https://github.com/spotify/confidence-sdk-android/compare/0.6.8...0.6.9) (2026-05-22) + + +### ✨ New Features + +* migrate integration tests to new Confidence workspace ([#248](https://github.com/spotify/confidence-sdk-android/issues/248)) ([96002eb](https://github.com/spotify/confidence-sdk-android/commit/96002eba0dbe6036ea5197343e03e37cebf3d110)) + + +### 🧹 Chore + +* fail loudly on missing CONFIDENCE_CLIENT_SECRET ([#250](https://github.com/spotify/confidence-sdk-android/issues/250)) ([49208e6](https://github.com/spotify/confidence-sdk-android/commit/49208e612ac24bcba58885ba79d8be1b0e915d69)) + ## [0.6.8](https://github.com/spotify/confidence-sdk-android/compare/0.6.7...0.6.8) (2026-05-04) diff --git a/README.md b/README.md index 8662aa06..a546c47e 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.8") +implementation("com.spotify.confidence:openfeature-provider-android:0.6.9") ``` -Where `0.6.8` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. +Where `0.6.9` 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.8") +implementation("com.spotify.confidence:confidence-sdk-android:0.6.9") ``` -Where `0.6.8` is the most recent version of this SDK. +Where `0.6.9` 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 95df9dbb..f049c5be 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.8" + ext["version"] = "0.6.9" // x-release-please-end } group = project.extra["groupId"].toString()