From 6ac48f96674b3501d173826cbbda0669db35f99d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 10:58:15 +0200 Subject: [PATCH] chore(main): release 0.3.1 (#161) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .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 1c861e15..bd427b6c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.3.0"} +{".":"0.3.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 88d65873..95814081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.1](https://github.com/spotify/confidence-sdk-android/compare/0.3.0...0.3.1) (2024-06-03) + + +### 🐛 Bug Fixes + +* make the event publish url global ([#160](https://github.com/spotify/confidence-sdk-android/issues/160)) ([564b081](https://github.com/spotify/confidence-sdk-android/commit/564b081513fe6607d150c69bb30fcb56407215ae)) +* wrap around dispatcher in fetch and activate ([#162](https://github.com/spotify/confidence-sdk-android/issues/162)) ([f8456fb](https://github.com/spotify/confidence-sdk-android/commit/f8456fbb42d8eaf1df3855fe864f42f039c3f6c5)) + ## [0.3.0](https://github.com/spotify/confidence-sdk-android/compare/0.2.1...0.3.0) (2024-05-29) diff --git a/README.md b/README.md index f8187f57..e3624c72 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ The latest release of the SDK is available on Maven central. Add the following dependency to your gradle file to use it: ``` -implementation("com.spotify.confidence:confidence-sdk-android:0.3.0") +implementation("com.spotify.confidence:confidence-sdk-android:0.3.1") ``` -Where `0.3.0` is the most recent version of this SDK. +Where `0.3.1` is the most recent version of this SDK. Released versions can be found under "Releases" within this repository. @@ -110,10 +110,10 @@ The latest release of the Provider is available on Maven central. Add the following dependency to your gradle file: ``` -implementation("com.spotify.confidence:openfeature-provider-android:0.3.0") +implementation("com.spotify.confidence:openfeature-provider-android:0.3.1") ``` -Where `0.3.0` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. +Where `0.3.1` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository. diff --git a/build.gradle.kts b/build.gradle.kts index c21e2955..78d997fc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { allprojects { extra["groupId"] = "com.spotify.confidence" // x-release-please-start-version - ext["version"] = "0.3.0" + ext["version"] = "0.3.1" // x-release-please-end } group = project.extra["groupId"].toString()