diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 24309e36..55e529da 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.5.3"} +{".":"0.6.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 93b03c56..aa035a50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [0.6.0](https://github.com/open-feature/kotlin-sdk/compare/v0.5.3...v0.6.0) (2025-08-18) + + +### ⚠ BREAKING CHANGES + +> [!IMPORTANT] +> Before version 0.6.0 the Maven artifact's id was `android-sdk`. When upgrading to 0.6.0 or higher +> please do make sure to use the new artifact id, which is `kotlin-sdk`. +> +> In version 0.6.0 the base package name has changed from `dev.openfeature.sdk` to +> `dev.openfeature.kotlin.sdk`. When upgrading to 0.6.0 or higher please update your imports +> accordingly. +> +> **Example:** `import dev.openfeature.sdk.EvaluationContext` -> +> `import dev.openfeature.kotlin.sdk.EvaluationContext`. + + +* Kotlin Multiplatform support ([#148](https://github.com/open-feature/kotlin-sdk/issues/148)) + +### ✨ New Features + +* Kotlin Multiplatform support ([#148](https://github.com/open-feature/kotlin-sdk/issues/148)) ([8eba3d7](https://github.com/open-feature/kotlin-sdk/commit/8eba3d772636877307eb955f566a01e311d74761)) + ## [0.5.3](https://github.com/open-feature/kotlin-sdk/compare/v0.5.2...v0.5.3) (2025-08-04) diff --git a/README.md b/README.md index b8179f17..5532cf90 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ Specification - - Release + + Release
@@ -67,7 +67,7 @@ Installation is preferred via Maven Central. ```kotlin dependencies { - api("dev.openfeature:kotlin-sdk:0.5.3") + api("dev.openfeature:kotlin-sdk:0.6.0") } ``` @@ -79,7 +79,7 @@ dependencies { kotlin { sourceSets { commonMain.dependencies { - api("dev.openfeature:kotlin-sdk:0.5.3") + api("dev.openfeature:kotlin-sdk:0.6.0") } } } diff --git a/build.gradle.kts b/build.gradle.kts index 1b7b76a5..b4b6433d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { allprojects { extra["groupId"] = "dev.openfeature" // x-release-please-start-version - ext["version"] = "0.5.3" + ext["version"] = "0.6.0" // x-release-please-end } group = project.extra["groupId"].toString() diff --git a/version.txt b/version.txt index be14282b..a918a2aa 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.5.3 +0.6.0