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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.7.0
## Bug fixes:
- Switch to `is` instead of `==` to improve static initialization behavior (#130). Thanks @kyay10!
- Ensure objects are not duplicated in the sealed enum list, if reachable from more than one subclass (#135). Thanks @kyay10!

## Breaking changes:
- The type of `EnumForSealedEnumProvider.enumClass` is updated from a `Class` to a `KClass`.
This allows `runtime` to not depend on any JVM classes, and therefore can be a multiplatform artifact in the future.

# 0.6.0
## Features:
- Update to Kotlin 1.8
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ repositories {
}

dependencies {
implementation("com.github.livefront.sealed-enum:runtime:0.6.0")
kapt("com.github.livefront.sealed-enum:processor:0.6.0")
implementation("com.github.livefront.sealed-enum:runtime:0.7.0")
kapt("com.github.livefront.sealed-enum:processor:0.7.0")
}
```

Expand All @@ -385,8 +385,8 @@ repositories {
}

dependencies {
implementation("com.github.livefront.sealed-enum:runtime:0.6.0")
ksp("com.github.livefront.sealed-enum:ksp:0.6.0")
implementation("com.github.livefront.sealed-enum:runtime:0.7.0")
ksp("com.github.livefront.sealed-enum:ksp:0.7.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ org.gradle.parallel=true
kotlin.code.style=official

group=com.livefront.sealedenum
version=0.6.0
version=0.7.0