Skip to content
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.5.3"}
{".":"0.6.0"}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<img alt="Specification" src="https://img.shields.io/static/v1?label=specification&message=v0.8.0&color=yellow&style=for-the-badge" />
</a>
<!-- x-release-please-start-version -->
<a href="https://github.com/open-feature/kotlin-sdk/releases/tag/v0.5.3">
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v0.5.3&color=blue&style=for-the-badge" />
<a href="https://github.com/open-feature/kotlin-sdk/releases/tag/v0.6.0">
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v0.6.0&color=blue&style=for-the-badge" />
</a>
<!-- x-release-please-end -->
<br/>
Expand Down Expand Up @@ -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")
}
```
<!-- x-release-please-end -->
Expand All @@ -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")
}
}
}
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"] = "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()
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.3
0.6.0