Skip to content

Commit e997d3e

Browse files
authored
Prepare 1.6.2 release (#2515)
1 parent 4a5648b commit e997d3e

File tree

4 files changed

+25
-16
lines changed

4 files changed

+25
-16
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.6.2 / 2023-11-30
2+
==================
3+
4+
This is a patch release accompanying Kotlin 1.9.21. It also provides additional targets that were not available in 1.6.1:
5+
wasm-wasi and (deprecated) linuxArm32Hfp.
6+
7+
* Add Wasm WASI target (#2510)
8+
* Bring back linuxArm32Hfp target because it is deprecated, but not removed yet. (#2505)
9+
110
1.6.1 / 2023-11-15
211
==================
312

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
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.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)
99
[![KDoc link](https://img.shields.io/badge/API_reference-KDoc-blue)](https://kotlinlang.org/api/kotlinx.serialization/)
1010
[![Slack channel](https://img.shields.io/badge/chat-slack-blue.svg?logo=slack)](https://kotlinlang.slack.com/messages/serialization/)
1111

@@ -95,17 +95,17 @@ Kotlin DSL:
9595

9696
```kotlin
9797
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"
100100
}
101101
```
102102

103103
Groovy DSL:
104104

105105
```gradle
106106
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'
109109
}
110110
```
111111

@@ -123,7 +123,7 @@ buildscript {
123123
repositories { mavenCentral() }
124124

125125
dependencies {
126-
val kotlinVersion = "1.9.20"
126+
val kotlinVersion = "1.9.21"
127127
classpath(kotlin("gradle-plugin", version = kotlinVersion))
128128
classpath(kotlin("serialization", version = kotlinVersion))
129129
}
@@ -134,7 +134,7 @@ Groovy DSL:
134134

135135
```gradle
136136
buildscript {
137-
ext.kotlin_version = '1.9.20'
137+
ext.kotlin_version = '1.9.21'
138138
repositories { mavenCentral() }
139139
140140
dependencies {
@@ -164,7 +164,7 @@ repositories {
164164
}
165165

166166
dependencies {
167-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.1")
167+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
168168
}
169169
```
170170

@@ -176,7 +176,7 @@ repositories {
176176
}
177177
178178
dependencies {
179-
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.1"
179+
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2"
180180
}
181181
```
182182

@@ -266,8 +266,8 @@ Ensure the proper version of Kotlin and serialization version:
266266

267267
```xml
268268
<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>
271271
</properties>
272272
```
273273

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
#
44

55
group=org.jetbrains.kotlinx
6-
version=1.6.2-SNAPSHOT
6+
version=1.6.3-SNAPSHOT
77

8-
kotlin.version=1.9.20
8+
kotlin.version=1.9.21
99

1010
# This version takes precedence if 'bootstrap' property passed to project
1111
kotlin.version.snapshot=1.9.255-SNAPSHOT

integration-test/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
#
44

5-
mainKotlinVersion=1.9.20
6-
mainLibVersion=1.6.2-SNAPSHOT
5+
mainKotlinVersion=1.9.21
6+
mainLibVersion=1.6.3-SNAPSHOT
77

88
kotlin.code.style=official
99
kotlin.js.compiler=ir

0 commit comments

Comments
 (0)