diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fdf7ce7a..f5c077ca 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.1.6"} +{".":"0.1.7"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b56569d..ea2e5796 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 48df2829..fd1f8c98 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ 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.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: ``` @@ -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. ### Enabling the provider, setting the evaluation context and resolving flags diff --git a/build.gradle.kts b/build.gradle.kts index b7940871..3aeef91b 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.1.6" + ext["version"] = "0.1.7" // x-release-please-end } group = project.extra["groupId"].toString()