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.9.20 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
8
- [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.6.1 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.6.1 )
7
+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.9.21 -blue.svg?logo=kotlin )] ( http://kotlinlang.org )
8
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.6.2 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.6.2 )
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
@@ -95,17 +95,17 @@ Kotlin DSL:
95
95
96
96
``` kotlin
97
97
plugins {
98
- kotlin(" jvm" ) version " 1.9.20 " // or kotlin("multiplatform") or any other kotlin plugin
99
- kotlin(" plugin.serialization" ) version " 1.9.20 "
98
+ kotlin(" jvm" ) version " 1.9.21 " // or kotlin("multiplatform") or any other kotlin plugin
99
+ kotlin(" plugin.serialization" ) version " 1.9.21 "
100
100
}
101
101
```
102
102
103
103
Groovy DSL:
104
104
105
105
``` gradle
106
106
plugins {
107
- id 'org.jetbrains.kotlin.multiplatform' version '1.9.20 '
108
- id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.20 '
107
+ id 'org.jetbrains.kotlin.multiplatform' version '1.9.21 '
108
+ id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.21 '
109
109
}
110
110
```
111
111
@@ -123,7 +123,7 @@ buildscript {
123
123
repositories { mavenCentral() }
124
124
125
125
dependencies {
126
- val kotlinVersion = " 1.9.20 "
126
+ val kotlinVersion = " 1.9.21 "
127
127
classpath(kotlin(" gradle-plugin" , version = kotlinVersion))
128
128
classpath(kotlin(" serialization" , version = kotlinVersion))
129
129
}
@@ -134,7 +134,7 @@ Groovy DSL:
134
134
135
135
``` gradle
136
136
buildscript {
137
- ext.kotlin_version = '1.9.20 '
137
+ ext.kotlin_version = '1.9.21 '
138
138
repositories { mavenCentral() }
139
139
140
140
dependencies {
@@ -164,7 +164,7 @@ repositories {
164
164
}
165
165
166
166
dependencies {
167
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.1 " )
167
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2 " )
168
168
}
169
169
```
170
170
@@ -176,7 +176,7 @@ repositories {
176
176
}
177
177
178
178
dependencies {
179
- implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.1 "
179
+ implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2 "
180
180
}
181
181
```
182
182
@@ -266,8 +266,8 @@ Ensure the proper version of Kotlin and serialization version:
266
266
267
267
``` xml
268
268
<properties >
269
- <kotlin .version>1.9.20 </kotlin .version>
270
- <serialization .version>1.6.1 </serialization .version>
269
+ <kotlin .version>1.9.21 </kotlin .version>
270
+ <serialization .version>1.6.2 </serialization .version>
271
271
</properties >
272
272
```
273
273
0 commit comments