Skip to content

Commit

Permalink
Update Kotlin to 1.8.22 and kotlinx.serialization to 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
azabost committed Jun 27, 2023
1 parent 22be2f8 commit 81fb8f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {
Add the following dependency in order to access `CodifiedEnum` class.

```kotlin
implementation("dev.bright.codified:enums:1.6.21.1")
implementation("dev.bright.codified:enums:1.8.22.1")
```

`CodifiedEnum` is a sealed class which represents either "known" or "unknown" enum type depending on the `code`
Expand Down Expand Up @@ -58,7 +58,7 @@ Add the following dependency in order to access `CodifiedEnum` serializer using
[Kotlin serialization](https://github.com/Kotlin/kotlinx.serialization).

```kotlin
implementation("dev.bright.codified:enums-serializer:1.6.21.1")
implementation("dev.bright.codified:enums-serializer:1.8.22.1")
```

Add `CodifiedSerializer` object for your enum class to handle both known and unknown enum types.
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Config {
val group = "dev.bright.codified"
val version = "1.6.21.1"
val version = "1.8.22.1"
val jvmToolchain = 8
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Versions {
const val kotlin = "1.6.21"
const val kotlin = "1.8.22"
const val junit = "5.6.2"
const val shouldko = "0.2.2"
const val serialization = "1.3.2"
const val serialization = "1.5.1"
const val jackson = "2.15.2"
}

0 comments on commit 81fb8f1

Please sign in to comment.