4
4
[ ![ JetBrains official project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
5
5
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( http://www.apache.org/licenses/LICENSE-2.0 )
6
6
[ ![ TeamCity build] ( https://img.shields.io/teamcity/http/teamcity.jetbrains.com/s/KotlinTools_KotlinxSerialization_Ko.svg )] ( https://teamcity.jetbrains.com/viewType.html?buildTypeId=KotlinTools_KotlinxSerialization_Ko&guest=1 )
7
- [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.8.0 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
8
- [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.5.0-RC )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.5.0-RC /pom )
7
+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.8.10 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
8
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.5.0 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.5.0/pom )
9
9
[ ![ KDoc link] ( https://img.shields.io/badge/API_reference-KDoc-blue )] ( https://kotlinlang.org/api/kotlinx.serialization/ )
10
10
[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-blue.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/serialization/ )
11
11
@@ -92,17 +92,17 @@ Kotlin DSL:
92
92
93
93
``` kotlin
94
94
plugins {
95
- kotlin(" jvm" ) version " 1.8.0 " // or kotlin("multiplatform") or any other kotlin plugin
96
- kotlin(" plugin.serialization" ) version " 1.8.0 "
95
+ kotlin(" jvm" ) version " 1.8.10 " // or kotlin("multiplatform") or any other kotlin plugin
96
+ kotlin(" plugin.serialization" ) version " 1.8.10 "
97
97
}
98
98
```
99
99
100
100
Groovy DSL:
101
101
102
102
``` gradle
103
103
plugins {
104
- id 'org.jetbrains.kotlin.multiplatform' version '1.8.0 '
105
- id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.0 '
104
+ id 'org.jetbrains.kotlin.multiplatform' version '1.8.10 '
105
+ id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.10 '
106
106
}
107
107
```
108
108
@@ -119,7 +119,7 @@ buildscript {
119
119
repositories { mavenCentral() }
120
120
121
121
dependencies {
122
- val kotlinVersion = " 1.8.0 "
122
+ val kotlinVersion = " 1.8.10 "
123
123
classpath(kotlin(" gradle-plugin" , version = kotlinVersion))
124
124
classpath(kotlin(" serialization" , version = kotlinVersion))
125
125
}
@@ -130,7 +130,7 @@ Groovy DSL:
130
130
131
131
``` gradle
132
132
buildscript {
133
- ext.kotlin_version = '1.8.0 '
133
+ ext.kotlin_version = '1.8.10 '
134
134
repositories { mavenCentral() }
135
135
136
136
dependencies {
@@ -159,7 +159,7 @@ repositories {
159
159
}
160
160
161
161
dependencies {
162
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0-RC " )
162
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0" )
163
163
}
164
164
```
165
165
@@ -171,7 +171,7 @@ repositories {
171
171
}
172
172
173
173
dependencies {
174
- implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0-RC "
174
+ implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0"
175
175
}
176
176
```
177
177
@@ -261,8 +261,8 @@ Ensure the proper version of Kotlin and serialization version:
261
261
262
262
``` xml
263
263
<properties >
264
- <kotlin .version>1.8.0 </kotlin .version>
265
- <serialization .version>1.5.0-RC </serialization .version>
264
+ <kotlin .version>1.8.10 </kotlin .version>
265
+ <serialization .version>1.5.0</serialization .version>
266
266
</properties >
267
267
```
268
268
0 commit comments