diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 13ffd6c0..c174f38c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.6.5"} +{".":"0.6.6"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 395353be..05178d96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.6](https://github.com/spotify/confidence-sdk-android/compare/0.6.5...0.6.6) (2026-03-26) + + +### 🐛 Bug Fixes + +* close OkHttp response bodies to prevent connection leaks ([#237](https://github.com/spotify/confidence-sdk-android/issues/237)) ([40d014b](https://github.com/spotify/confidence-sdk-android/commit/40d014b55f588be7bf9144746343afadc54b3c19)) + ## [0.6.5](https://github.com/spotify/confidence-sdk-android/compare/0.6.4...0.6.5) (2026-03-25) diff --git a/README.md b/README.md index 2f0d11f8..54514909 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.5") +implementation("com.spotify.confidence:openfeature-provider-android:0.6.6") ``` -Where `0.6.5` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. +Where `0.6.6` 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.5") +implementation("com.spotify.confidence:confidence-sdk-android:0.6.6") ``` -Where `0.6.5` is the most recent version of this SDK. +Where `0.6.6` 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 17762561..48ace6e6 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.5" + ext["version"] = "0.6.6" // x-release-please-end } group = project.extra["groupId"].toString()