Skip to content

Commit 61cc67e

Browse files
authored
Prepare v1.2.1 release (#1478)
1 parent b9767c1 commit 61cc67e

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2+
1.2.1 / 2021-05-14
3+
==================
4+
5+
This release mainly contains bugfixes for various issues, including important [broken thread-safety](https://github.com/Kotlin/kotlinx.serialization/issues/1455) and [improper encoding](https://github.com/Kotlin/kotlinx.serialization/issues/1441).
6+
7+
### Features
8+
9+
* Added support for nullable values, nested and empty collections in protobuf (#1430)
10+
11+
### Bugfixes
12+
13+
* Support @JsonNames for enum values (#1473)
14+
* Handle EOF in skipElement correctly (#1475)
15+
* Allow using value classes with primitive carriers as map keys (#1470)
16+
* Read JsonNull only for non-string literals in JsonTreeReader (#1466)
17+
* Properly reuse JsonStringBuilders in CharArrayPool (#1455)
18+
* Properly ensure capacity of the string builder on the append slow-path (#1441)
19+
120
1.2.0 / 2021-04-27
221
==================
322

README.md

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

@@ -153,7 +153,7 @@ repositories {
153153
}
154154

155155
dependencies {
156-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.0")
156+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.1")
157157
}
158158
```
159159

@@ -165,7 +165,7 @@ repositories {
165165
}
166166
167167
dependencies {
168-
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.0"
168+
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.1"
169169
}
170170
```
171171

@@ -221,7 +221,7 @@ Ensure the proper version of Kotlin and serialization version:
221221
```xml
222222
<properties>
223223
<kotlin.version>1.5.0</kotlin.version>
224-
<serialization.version>1.2.0</serialization.version>
224+
<serialization.version>1.2.1</serialization.version>
225225
</properties>
226226
```
227227

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
group=org.jetbrains.kotlinx
6-
version=1.2.0-SNAPSHOT
6+
version=1.2.1-SNAPSHOT
77

88
kotlin.version=1.5.0
99

integration-test/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
mainKotlinVersion=1.5.0
6-
mainLibVersion=1.2.0-SNAPSHOT
6+
mainLibVersion=1.2.1-SNAPSHOT
77

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

0 commit comments

Comments
 (0)