Skip to content

Commit

Permalink
chore(main): release 0.3.0 (#150)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed May 29, 2024
1 parent fd54e21 commit b3d8fa2
Show file tree
Hide file tree
Showing 4 changed files with 39 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.2.1"}
{".":"0.3.0"}
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## [0.3.0](https://github.com/spotify/confidence-sdk-android/compare/0.2.1...0.3.0) (2024-05-29)


### ⚠ BREAKING CHANGES

* context container in payload
* `context` container in event payload ([#158](https://github.com/spotify/confidence-sdk-android/issues/158))

### 🐛 Bug Fixes

* Add version/build to context ([#154](https://github.com/spotify/confidence-sdk-android/issues/154)) ([1e71fb9](https://github.com/spotify/confidence-sdk-android/commit/1e71fb99a32b90fd4785ec2aeb7782399b959628))
* Prevent coroutine crashing on errors ([#157](https://github.com/spotify/confidence-sdk-android/issues/157)) ([d75229a](https://github.com/spotify/confidence-sdk-android/commit/d75229a766d9f72c522e0503a8cd34566e7649ae))
* Remove the duplicate singleton confidence ([#156](https://github.com/spotify/confidence-sdk-android/issues/156)) ([60deb61](https://github.com/spotify/confidence-sdk-android/commit/60deb61cb87029d21b792de9719bf431bb4a26cb))


### ✨ New Features

* add manual flush capabilities ([#152](https://github.com/spotify/confidence-sdk-android/issues/152)) ([157eeb9](https://github.com/spotify/confidence-sdk-android/commit/157eeb955df663d163877e1e659e9472dde7d4c6))


### 📚 Documentation

* Remove some README parts ([#151](https://github.com/spotify/confidence-sdk-android/issues/151)) ([45b9964](https://github.com/spotify/confidence-sdk-android/commit/45b996432606e0154fe73df847068bb025bf96bc))
* Smaller README refactoring ([#153](https://github.com/spotify/confidence-sdk-android/issues/153)) ([d4efefc](https://github.com/spotify/confidence-sdk-android/commit/d4efefcabdd4cc2c06694221aab7b57d300db995))
* update readme to cover Confidence APIs ([#149](https://github.com/spotify/confidence-sdk-android/issues/149)) ([8cfea1c](https://github.com/spotify/confidence-sdk-android/commit/8cfea1caf8dfe4ce89c21546fdc23f413a4cd65a))


### 🔄 Refactoring

* `context` container in event payload ([#158](https://github.com/spotify/confidence-sdk-android/issues/158)) ([fd54e21](https://github.com/spotify/confidence-sdk-android/commit/fd54e2186f531f3a4d4f4449eb5b0aeb828c1aed))
* context container in payload ([fd54e21](https://github.com/spotify/confidence-sdk-android/commit/fd54e2186f531f3a4d4f4449eb5b0aeb828c1aed))
* from "message" to "data" ([#159](https://github.com/spotify/confidence-sdk-android/issues/159)) ([06b4d5f](https://github.com/spotify/confidence-sdk-android/commit/06b4d5f2a34e64ff9035129c3f0c8b8a784caad2))

## [0.2.1](https://github.com/spotify/confidence-sdk-android/compare/0.2.0...0.2.1) (2024-05-16)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,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.2.1")
implementation("com.spotify.confidence:confidence-sdk-android:0.3.0")
```

Where `0.2.1` is the most recent version of this SDK.
Where `0.3.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 @@ -110,10 +110,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.2.1")
implementation("com.spotify.confidence:openfeature-provider-android:0.3.0")
```

Where `0.2.1` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository.
Where `0.3.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 @@ -11,7 +11,7 @@ plugins {
allprojects {
extra["groupId"] = "com.spotify.confidence"
// x-release-please-start-version
ext["version"] = "0.2.1"
ext["version"] = "0.3.0"
// x-release-please-end
}
group = project.extra["groupId"].toString()
Expand Down

0 comments on commit b3d8fa2

Please sign in to comment.