Skip to content

Commit e20b2bb

Browse files
chore(main): release 0.6.0 (#159)
Signed-off-by: Nicklas Lundin <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Nicklas Lundin <[email protected]>
1 parent 8eba3d7 commit e20b2bb

File tree

5 files changed

+30
-7
lines changed

5 files changed

+30
-7
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"0.5.3"}
1+
{".":"0.6.0"}

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/open-feature/kotlin-sdk/compare/v0.5.3...v0.6.0) (2025-08-18)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
> [!IMPORTANT]
9+
> Before version 0.6.0 the Maven artifact's id was `android-sdk`. When upgrading to 0.6.0 or higher
10+
> please do make sure to use the new artifact id, which is `kotlin-sdk`.
11+
>
12+
> In version 0.6.0 the base package name has changed from `dev.openfeature.sdk` to
13+
> `dev.openfeature.kotlin.sdk`. When upgrading to 0.6.0 or higher please update your imports
14+
> accordingly.
15+
>
16+
> **Example:** `import dev.openfeature.sdk.EvaluationContext` ->
17+
> `import dev.openfeature.kotlin.sdk.EvaluationContext`.
18+
19+
20+
* Kotlin Multiplatform support ([#148](https://github.com/open-feature/kotlin-sdk/issues/148))
21+
22+
### ✨ New Features
23+
24+
* Kotlin Multiplatform support ([#148](https://github.com/open-feature/kotlin-sdk/issues/148)) ([8eba3d7](https://github.com/open-feature/kotlin-sdk/commit/8eba3d772636877307eb955f566a01e311d74761))
25+
326
## [0.5.3](https://github.com/open-feature/kotlin-sdk/compare/v0.5.2...v0.5.3) (2025-08-04)
427

528

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<img alt="Specification" src="https://img.shields.io/static/v1?label=specification&message=v0.8.0&color=yellow&style=for-the-badge" />
1717
</a>
1818
<!-- x-release-please-start-version -->
19-
<a href="https://github.com/open-feature/kotlin-sdk/releases/tag/v0.5.3">
20-
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v0.5.3&color=blue&style=for-the-badge" />
19+
<a href="https://github.com/open-feature/kotlin-sdk/releases/tag/v0.6.0">
20+
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v0.6.0&color=blue&style=for-the-badge" />
2121
</a>
2222
<!-- x-release-please-end -->
2323
<br/>
@@ -67,7 +67,7 @@ Installation is preferred via Maven Central.
6767

6868
```kotlin
6969
dependencies {
70-
api("dev.openfeature:kotlin-sdk:0.5.3")
70+
api("dev.openfeature:kotlin-sdk:0.6.0")
7171
}
7272
```
7373
<!-- x-release-please-end -->
@@ -79,7 +79,7 @@ dependencies {
7979
kotlin {
8080
sourceSets {
8181
commonMain.dependencies {
82-
api("dev.openfeature:kotlin-sdk:0.5.3")
82+
api("dev.openfeature:kotlin-sdk:0.6.0")
8383
}
8484
}
8585
}

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
allprojects {
1212
extra["groupId"] = "dev.openfeature"
1313
// x-release-please-start-version
14-
ext["version"] = "0.5.3"
14+
ext["version"] = "0.6.0"
1515
// x-release-please-end
1616
}
1717
group = project.extra["groupId"].toString()

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.3
1+
0.6.0

0 commit comments

Comments
 (0)