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.7.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.4.0 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.4.0 /pom )
7
+ [ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.7.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.4.1 )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.4.1 /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
@@ -89,17 +89,17 @@ Kotlin DSL:
89
89
90
90
``` kotlin
91
91
plugins {
92
- kotlin(" jvm" ) version " 1.7.10 " // or kotlin("multiplatform") or any other kotlin plugin
93
- kotlin(" plugin.serialization" ) version " 1.7.10 "
92
+ kotlin(" jvm" ) version " 1.7.20 " // or kotlin("multiplatform") or any other kotlin plugin
93
+ kotlin(" plugin.serialization" ) version " 1.7.20 "
94
94
}
95
95
```
96
96
97
97
Groovy DSL:
98
98
99
99
``` gradle
100
100
plugins {
101
- id 'org.jetbrains.kotlin.multiplatform' version '1.7.10 '
102
- id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.10 '
101
+ id 'org.jetbrains.kotlin.multiplatform' version '1.7.20 '
102
+ id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.20 '
103
103
}
104
104
```
105
105
@@ -116,7 +116,7 @@ buildscript {
116
116
repositories { mavenCentral() }
117
117
118
118
dependencies {
119
- val kotlinVersion = " 1.7.10 "
119
+ val kotlinVersion = " 1.7.20 "
120
120
classpath(kotlin(" gradle-plugin" , version = kotlinVersion))
121
121
classpath(kotlin(" serialization" , version = kotlinVersion))
122
122
}
@@ -127,7 +127,7 @@ Groovy DSL:
127
127
128
128
``` gradle
129
129
buildscript {
130
- ext.kotlin_version = '1.7.10 '
130
+ ext.kotlin_version = '1.7.20 '
131
131
repositories { mavenCentral() }
132
132
133
133
dependencies {
@@ -156,7 +156,7 @@ repositories {
156
156
}
157
157
158
158
dependencies {
159
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0 " )
159
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1 " )
160
160
}
161
161
```
162
162
@@ -168,7 +168,7 @@ repositories {
168
168
}
169
169
170
170
dependencies {
171
- implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0 "
171
+ implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1 "
172
172
}
173
173
```
174
174
@@ -286,8 +286,8 @@ Ensure the proper version of Kotlin and serialization version:
286
286
287
287
``` xml
288
288
<properties >
289
- <kotlin .version>1.7.10 </kotlin .version>
290
- <serialization .version>1.4.0 </serialization .version>
289
+ <kotlin .version>1.7.20 </kotlin .version>
290
+ <serialization .version>1.4.1 </serialization .version>
291
291
</properties >
292
292
```
293
293
0 commit comments