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.1.7 #114

Merged
merged 2 commits into from
Jan 16, 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.1.6"}
{".":"0.1.7"}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.1.7](https://github.com/spotify/confidence-openfeature-provider-kotlin/compare/0.1.6...0.1.7) (2024-01-16)


### 🐛 Bug Fixes

* Fix sdk metadata format ([#117](https://github.com/spotify/confidence-openfeature-provider-kotlin/issues/117)) ([e9ad5d8](https://github.com/spotify/confidence-openfeature-provider-kotlin/commit/e9ad5d826874005d0211dbc3d1f6ea1b6c115005))


### 🧹 Chore

* add a default endpoint to the provider ([#115](https://github.com/spotify/confidence-openfeature-provider-kotlin/issues/115)) ([dc53f9f](https://github.com/spotify/confidence-openfeature-provider-kotlin/commit/dc53f9f5e5c31051e7187ede1bb11099258faa62))


### 📚 Documentation

* Add docs on initialization strategy config ([#116](https://github.com/spotify/confidence-openfeature-provider-kotlin/issues/116)) ([ed96ca2](https://github.com/spotify/confidence-openfeature-provider-kotlin/commit/ed96ca27157d4bd34dc80e13bc1aff49f7d8f92c))
* Update README ([#113](https://github.com/spotify/confidence-openfeature-provider-kotlin/issues/113)) ([605c509](https://github.com/spotify/confidence-openfeature-provider-kotlin/commit/605c5095f5d5ddc9981075a80257240974a589ad))

## [0.1.6](https://github.com/spotify/confidence-openfeature-provider-kotlin/compare/0.1.5...0.1.6) (2024-01-04)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ 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.1.6")
implementation("com.spotify.confidence:openfeature-provider-android:0.1.7")
```
It can also be consumed from jitpack for using any branch or build:
```
Expand All @@ -25,7 +25,7 @@ for using specific commit:
implementation("com.github.spotify:confidence-openfeature-provider-kotlin:[COMMIT SHA]")
```

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

### Enabling the provider, setting the evaluation context and resolving flags
Expand Down
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.1.6"
ext["version"] = "0.1.7"
// x-release-please-end
}
group = project.extra["groupId"].toString()
Expand Down
Loading