Skip to content

Commit

Permalink
Bump version to 1.8.22.2
Browse files Browse the repository at this point in the history
  • Loading branch information
azabost committed Jun 29, 2023
1 parent 4c2a1c8 commit f671ec6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 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.8.22.1")
implementation("dev.bright.codified:enums:1.8.22.2")
```

`CodifiedEnum` is a sealed class which represents either "known" or "unknown" enum type depending on the `code`
Expand Down Expand Up @@ -60,7 +60,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.8.22.1")
implementation("dev.bright.codified:enums-serializer:1.8.22.2")
```

Add `CodifiedSerializer` object for your enum class to handle both known and unknown enum types.
Expand Down Expand Up @@ -110,7 +110,7 @@ data class FoodBasket(
Add this dependency:

```kotlin
implementation("dev.bright.codified:enums-gson:1.8.22.1")
implementation("dev.bright.codified:enums-gson:1.8.22.2")
```

and register the `TypeAdapterFactory` for `CodifiedEnum`:
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.8.22.1"
val version = "1.8.22.2"
val jvmToolchain = 8
}

0 comments on commit f671ec6

Please sign in to comment.