Skip to content

Commit f3a2717

Browse files
authored
Bump version in README (#1949)
1 parent 6bd5079 commit f3a2717

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
55
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
66
[![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.6.10-blue.svg?logo=kotlin)](http://kotlinlang.org)
7+
[![Kotlin](https://img.shields.io/badge/kotlin-1.6.21-blue.svg?logo=kotlin)](http://kotlinlang.org)
88
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.3.3)](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.3.3/pom)
99
[![KDoc link](https://img.shields.io/badge/API_reference-KDoc-blue)](https://kotlin.github.io/kotlinx.serialization/)
1010
[![Slack channel](https://img.shields.io/badge/chat-slack-blue.svg?logo=slack)](https://kotlinlang.slack.com/messages/serialization/)
@@ -89,17 +89,17 @@ Kotlin DSL:
8989

9090
```kotlin
9191
plugins {
92-
kotlin("jvm") version "1.6.10" // or kotlin("multiplatform") or any other kotlin plugin
93-
kotlin("plugin.serialization") version "1.6.10"
92+
kotlin("jvm") version "1.6.21" // or kotlin("multiplatform") or any other kotlin plugin
93+
kotlin("plugin.serialization") version "1.6.21"
9494
}
9595
```
9696

9797
Groovy DSL:
9898

9999
```gradle
100100
plugins {
101-
id 'org.jetbrains.kotlin.multiplatform' version '1.6.10'
102-
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.10'
101+
id 'org.jetbrains.kotlin.multiplatform' version '1.6.21'
102+
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.21'
103103
}
104104
```
105105

@@ -116,7 +116,7 @@ buildscript {
116116
repositories { mavenCentral() }
117117

118118
dependencies {
119-
val kotlinVersion = "1.6.10"
119+
val kotlinVersion = "1.6.21"
120120
classpath(kotlin("gradle-plugin", version = kotlinVersion))
121121
classpath(kotlin("serialization", version = kotlinVersion))
122122
}
@@ -127,7 +127,7 @@ Groovy DSL:
127127

128128
```gradle
129129
buildscript {
130-
ext.kotlin_version = '1.6.10'
130+
ext.kotlin_version = '1.6.21'
131131
repositories { mavenCentral() }
132132
133133
dependencies {
@@ -286,7 +286,7 @@ Ensure the proper version of Kotlin and serialization version:
286286

287287
```xml
288288
<properties>
289-
<kotlin.version>1.6.10</kotlin.version>
289+
<kotlin.version>1.6.21</kotlin.version>
290290
<serialization.version>1.3.3</serialization.version>
291291
</properties>
292292
```

0 commit comments

Comments
 (0)