Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.3.2 #164

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.3.1"}
{".":"0.3.2"}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.3.2](https://github.com/spotify/confidence-sdk-android/compare/0.3.1...0.3.2) (2024-06-17)


### ✨ New Features

* Expose set sdk metadata ([#166](https://github.com/spotify/confidence-sdk-android/issues/166)) ([10548d9](https://github.com/spotify/confidence-sdk-android/commit/10548d95cf923d3a10d37f3cc9c59394d087bf66))


### πŸ”„ Refactoring

* remove is_foreground from event producer ([#163](https://github.com/spotify/confidence-sdk-android/issues/163)) ([27846fc](https://github.com/spotify/confidence-sdk-android/commit/27846fc60102f7f61ac35cf0885ef09e2a51c806))

## [0.3.1](https://github.com/spotify/confidence-sdk-android/compare/0.3.0...0.3.1) (2024-06-03)


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.3.1")
implementation("com.spotify.confidence:confidence-sdk-android:0.3.2")
```

Where `0.3.1` is the most recent version of this SDK.
Where `0.3.2` 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.3.1")
implementation("com.spotify.confidence:openfeature-provider-android:0.3.2")
```

Where `0.3.1` is the most recent version of the Provider. Released versions can be found under "Releases" within this repository.
Where `0.3.2` 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.3.1"
ext["version"] = "0.3.2"
// x-release-please-end
}
group = project.extra["groupId"].toString()
Expand Down