Skip to content

Commit d5bc32d

Browse files
committed
Prepare 1.4.0 release
1 parent f7a92f2 commit d5bc32d

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
1.4.0 / 2022-08-18
2+
==================
3+
4+
This release contains all features and bugfixes from 1.4.0-RC plus some bugfixes on its own (see below).
5+
Kotlin 1.7.10 is used as a default.
6+
7+
### Bugfixes
8+
* Fixed decoding of huge JSON data for okio streams (#2006)
9+
10+
111
1.4.0-RC / 2022-07-20
212
==================
313

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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)
77
[![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-RC)](https://search.maven.org/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.4.0-RC/pom)
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)
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

@@ -156,7 +156,7 @@ repositories {
156156
}
157157

158158
dependencies {
159-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0-RC")
159+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0")
160160
}
161161
```
162162

@@ -168,7 +168,7 @@ repositories {
168168
}
169169
170170
dependencies {
171-
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0-RC"
171+
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0"
172172
}
173173
```
174174

@@ -287,7 +287,7 @@ Ensure the proper version of Kotlin and serialization version:
287287
```xml
288288
<properties>
289289
<kotlin.version>1.7.10</kotlin.version>
290-
<serialization.version>1.4.0-RC</serialization.version>
290+
<serialization.version>1.4.0</serialization.version>
291291
</properties>
292292
```
293293

gradle.properties

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

55
group=org.jetbrains.kotlinx
6-
version=1.4.0-SNAPSHOT
6+
version=1.4.1-SNAPSHOT
77

88
kotlin.version=1.7.10
99

1010
# This version take precedence if 'bootstrap' property passed to project
11-
kotlin.version.snapshot=1.7.255-SNAPSHOT
11+
kotlin.version.snapshot=1.8.255-SNAPSHOT
1212
# Also set KONAN_LOCAL_DIST environment variable in bootstrap mode to auto-assign konan.home
1313

1414
junit_version=4.12

integration-test/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
mainKotlinVersion=1.7.10
6-
mainLibVersion=1.4.0-SNAPSHOT
6+
mainLibVersion=1.4.1-SNAPSHOT
77

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

0 commit comments

Comments
 (0)