Skip to content

Commit

Permalink
chore(main): release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 18, 2025
1 parent 780feb1 commit 7dc0342
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.3.6"}
{".":"0.4.0"}
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.4.0](https://github.com/spotify/confidence-sdk-android/compare/0.3.6...0.4.0) (2025-02-18)


### ⚠ BREAKING CHANGES

* refactor context provider ([#191](https://github.com/spotify/confidence-sdk-android/issues/191))

### 🐛 Bug Fixes

* add additional logging to detect network issues ([#193](https://github.com/spotify/confidence-sdk-android/issues/193)) ([780feb1](https://github.com/spotify/confidence-sdk-android/commit/780feb184ff8ee0c93b1c5e4ab8a7f6e3a7669e5))
* align debug resolve log wording on all platforms ([a2b10f1](https://github.com/spotify/confidence-sdk-android/commit/a2b10f1bfb948b37425f8c30c5e9445c0671d83d))
* Align debug resolve log wording on all platforms ([#188](https://github.com/spotify/confidence-sdk-android/issues/188)) ([a2b10f1](https://github.com/spotify/confidence-sdk-android/commit/a2b10f1bfb948b37425f8c30c5e9445c0671d83d))
* close leaking okhttp response body ([#196](https://github.com/spotify/confidence-sdk-android/issues/196)) ([5a14feb](https://github.com/spotify/confidence-sdk-android/commit/5a14feb9d79df41330af8ae237ab26657c9edaef))


### ✨ New Features

* add shouldApply to the apply call to depend on backend ([#192](https://github.com/spotify/confidence-sdk-android/issues/192)) ([70598bd](https://github.com/spotify/confidence-sdk-android/commit/70598bd3d3adc1dd9d36155653a0d7f64c26ddfa))
* **Provider:** Add support for Tracking from OpenFeature ([#190](https://github.com/spotify/confidence-sdk-android/issues/190)) ([97c763c](https://github.com/spotify/confidence-sdk-android/commit/97c763c6bd2f07249a808d44cdbba63cba58fc2e))
* refactor context provider ([#191](https://github.com/spotify/confidence-sdk-android/issues/191)) ([37c243e](https://github.com/spotify/confidence-sdk-android/commit/37c243e1cc8c02ee06c09a018d6211fb778a2fdf))


### 🧹 Chore

* update OF version ([#195](https://github.com/spotify/confidence-sdk-android/issues/195)) ([56852a9](https://github.com/spotify/confidence-sdk-android/commit/56852a984d8ef032a96762b66ef15890bfb367e5))

## [0.3.6](https://github.com/spotify/confidence-sdk-android/compare/0.3.5...0.3.6) (2024-11-29)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ The latest release of the SDK is available on Maven central.
<!---x-release-please-start-version-->
Add the following dependency to your gradle file to use it:
```
implementation("com.spotify.confidence:confidence-sdk-android:0.3.6")
implementation("com.spotify.confidence:confidence-sdk-android:0.4.0")
```

Where `0.3.6` is the most recent version of this SDK.
Where `0.4.0` is the most recent version of this SDK.

Released versions can be found under "Releases" within this repository.
<!---x-release-please-end-->
Expand Down Expand Up @@ -127,10 +127,10 @@ The latest release of the Provider is available on Maven central.
<!---x-release-please-start-version-->
Add the following dependency to your gradle file:
```
implementation("com.spotify.confidence:openfeature-provider-android:0.3.6")
implementation("com.spotify.confidence:openfeature-provider-android:0.4.0")
```

Where `0.3.6` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository.
Where `0.4.0` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository.
<!---x-release-please-end-->


2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
allprojects {
extra["groupId"] = "com.spotify.confidence"
// x-release-please-start-version
ext["version"] = "0.3.6"
ext["version"] = "0.4.0"
// x-release-please-end
}
group = project.extra["groupId"].toString()
Expand Down

0 comments on commit 7dc0342

Please sign in to comment.