Skip to content

Commit

Permalink
Prepare 0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvanyo committed Apr 6, 2023
1 parent ecc77cf commit 1dbd984
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.6.0
## Features:
- Update to Kotlin 1.8

## Miscellaneous updates:
- Various dependency updates
- Updated JDK versions on CI to 1.8, 11 and 17

# 0.5.0
## Features:
- Update to Kotlin 1.7
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,25 +358,25 @@ repositories {
}

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

#### Via `ksp`

```kotlin
plugins {
id("com.google.devtools.ksp") version "1.7.0-1.0.6"
id("com.google.devtools.ksp") version "1.8.0-1.0.9"
}

repositories {
maven(url = "https://jitpack.io")
}

dependencies {
implementation("com.github.livefront.sealed-enum:runtime:0.5.0")
ksp("com.github.livefront.sealed-enum:ksp:0.5.0")
implementation("com.github.livefront.sealed-enum:runtime:0.6.0")
ksp("com.github.livefront.sealed-enum:ksp:0.6.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.5.0
version=0.6.0

0 comments on commit 1dbd984

Please sign in to comment.