File tree Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 1+ 1.7.3 / 2024-09-19
2+ ==================
3+
4+ This release aims to fix important issues that were discovered in the 1.7.2 release,
5+ including the inability to sync certain projects into Android Studio/IntelliJ IDEA and exceptions from custom Uuid serializers.
6+
7+ It uses Kotlin 2.0.20 by default.
8+
9+ * Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818 )
10+ * Drop usage of deprecated Any?.freeze() in K/N target (#2819 )
11+ * Check against serialName instead of simpleClassName (#2802 )
12+ * Ignore NoClassDefFoundError when initializing builtins map for serializer() function (#2803 )
13+ * Clarify example for SerializationException (#2806 )
114
2151.7.2 / 2024-08-28
316==================
Original file line number Diff line number Diff line change 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-2.0.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.7.2 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.7.2 )
8+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-serialization-core/1.7.3 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-serialization-core/1.7.3 )
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
@@ -164,7 +164,7 @@ repositories {
164164}
165165
166166dependencies {
167- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2 " )
167+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 " )
168168}
169169```
170170
@@ -176,7 +176,7 @@ repositories {
176176}
177177
178178dependencies {
179- implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2 "
179+ implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 "
180180}
181181```
182182
@@ -267,7 +267,7 @@ Ensure the proper version of Kotlin and serialization version:
267267``` xml
268268<properties >
269269 <kotlin .version>2.0.20</kotlin .version>
270- <serialization .version>1.7.2 </serialization .version>
270+ <serialization .version>1.7.3 </serialization .version>
271271</properties >
272272```
273273
Original file line number Diff line number Diff line change 33#
44
55group =org.jetbrains.kotlinx
6- version =1.7.3 -SNAPSHOT
6+ version =1.7.4 -SNAPSHOT
77jdk_toolchain_version =11
88# This version takes precedence if 'bootstrap' property passed to project
99kotlin.version.snapshot =2.0.255-SNAPSHOT
Original file line number Diff line number Diff line change 33#
44
55mainKotlinVersion =2.0.20
6- mainLibVersion =1.7.3 -SNAPSHOT
6+ mainLibVersion =1.7.4 -SNAPSHOT
77
88kotlin.code.style =official
99kotlin.js.compiler =ir
You can’t perform that action at this time.
0 commit comments