Skip to content

Commit

Permalink
updated serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
benediktschwab committed Jan 11, 2025
1 parent 73bf660 commit 0fdc147
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ object DependencyVersions {
const val slf4jSimple = "2.0.16"

// object creation libraries
const val kotlinxSerializationJson = "1.7.3"
const val kotlinxSerializationJson = "1.8.0"
const val kaml = "0.67.0"
const val jakartaActivationApi = "2.1.3"
const val jakartaXmlBindApi = "4.0.2"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Plugins.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object PluginVersions {
const val xjc = "1.6"
const val versionChecker = "0.51.0"
const val dokka = "2.0.0"
const val serialization = "2.0.20"
const val serialization = "2.1.0"
const val ksp = "2.1.0-1.0.29"
}

Expand Down
3 changes: 1 addition & 2 deletions rtron-io/src/main/kotlin/io/rtron/io/issues/IssueList.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ package io.rtron.io.issues
import kotlinx.serialization.Serializable

@Serializable
@JvmInline
value class IssueList<T>(private val issues: MutableList<T> = mutableListOf()) {
data class IssueList<T>(private val issues: MutableList<T> = mutableListOf()) {
// Properties
val size: Int
get() = issues.size
Expand Down

0 comments on commit 0fdc147

Please sign in to comment.