Skip to content

Commit

Permalink
Merge pull request #136 from livefront/av/prepare-0.7.0-release
Browse files Browse the repository at this point in the history
Prepare 0.7.0 release
  • Loading branch information
alexvanyo authored Jun 5, 2023
2 parents 47f9889 + 6dc3d93 commit 71a0c5c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
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

0 comments on commit 71a0c5c

Please sign in to comment.