File tree 4 files changed +19
-6
lines changed
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 )
1
14
2
15
1.7.2 / 2024-08-28
3
16
==================
Original file line number Diff line number Diff line change 5
5
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( http://www.apache.org/licenses/LICENSE-2.0 )
6
6
[ ![ 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
7
[ ![ 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 )
9
9
[ ![ KDoc link] ( https://img.shields.io/badge/API_reference-KDoc-blue )] ( https://kotlinlang.org/api/kotlinx.serialization/ )
10
10
[ ![ Slack channel] ( https://img.shields.io/badge/chat-slack-blue.svg?logo=slack )] ( https://kotlinlang.slack.com/messages/serialization/ )
11
11
@@ -164,7 +164,7 @@ repositories {
164
164
}
165
165
166
166
dependencies {
167
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2 " )
167
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 " )
168
168
}
169
169
```
170
170
@@ -176,7 +176,7 @@ repositories {
176
176
}
177
177
178
178
dependencies {
179
- implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2 "
179
+ implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3 "
180
180
}
181
181
```
182
182
@@ -267,7 +267,7 @@ Ensure the proper version of Kotlin and serialization version:
267
267
``` xml
268
268
<properties >
269
269
<kotlin .version>2.0.20</kotlin .version>
270
- <serialization .version>1.7.2 </serialization .version>
270
+ <serialization .version>1.7.3 </serialization .version>
271
271
</properties >
272
272
```
273
273
Original file line number Diff line number Diff line change 3
3
#
4
4
5
5
group =org.jetbrains.kotlinx
6
- version =1.7.3 -SNAPSHOT
6
+ version =1.7.4 -SNAPSHOT
7
7
jdk_toolchain_version =11
8
8
# This version takes precedence if 'bootstrap' property passed to project
9
9
kotlin.version.snapshot =2.0.255-SNAPSHOT
Original file line number Diff line number Diff line change 3
3
#
4
4
5
5
mainKotlinVersion =2.0.20
6
- mainLibVersion =1.7.3 -SNAPSHOT
6
+ mainLibVersion =1.7.4 -SNAPSHOT
7
7
8
8
kotlin.code.style =official
9
9
kotlin.js.compiler =ir
You can’t perform that action at this time.
0 commit comments