From d4d066d72a9f92f06c640be5a36a22f75d0d7659 Mon Sep 17 00:00:00 2001 From: Leonid Startsev Date: Thu, 19 Sep 2024 14:45:52 +0200 Subject: [PATCH] Prepare 1.7.3 release (#2821) --- CHANGELOG.md | 13 +++++++++++++ README.md | 8 ++++---- gradle.properties | 2 +- integration-test/gradle.properties | 2 +- 4 files changed, 19 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7a05f6180..2916b53653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +1.7.3 / 2024-09-19 +================== + +This release aims to fix important issues that were discovered in the 1.7.2 release, +including the inability to sync certain projects into Android Studio/IntelliJ IDEA and exceptions from custom Uuid serializers. + +It uses Kotlin 2.0.20 by default. + + * Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818) + * Drop usage of deprecated Any?.freeze() in K/N target (#2819) + * Check against serialName instead of simpleClassName (#2802) + * Ignore NoClassDefFoundError when initializing builtins map for serializer() function (#2803) + * Clarify example for SerializationException (#2806) 1.7.2 / 2024-08-28 ================== diff --git a/README.md b/README.md index 1cd0c3ec1e..c451e4130c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0) [![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) [![Kotlin](https://img.shields.io/badge/kotlin-2.0.20-blue.svg?logo=kotlin)](http://kotlinlang.org) -[![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) +[![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) [![KDoc link](https://img.shields.io/badge/API_reference-KDoc-blue)](https://kotlinlang.org/api/kotlinx.serialization/) [![Slack channel](https://img.shields.io/badge/chat-slack-blue.svg?logo=slack)](https://kotlinlang.slack.com/messages/serialization/) @@ -164,7 +164,7 @@ repositories { } dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2") + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3") } ``` @@ -176,7 +176,7 @@ repositories { } dependencies { - implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2" + implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3" } ``` @@ -267,7 +267,7 @@ Ensure the proper version of Kotlin and serialization version: ```xml 2.0.20 - 1.7.2 + 1.7.3 ``` diff --git a/gradle.properties b/gradle.properties index 0cad69ecfa..460a1cee4a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ # group=org.jetbrains.kotlinx -version=1.7.3-SNAPSHOT +version=1.7.4-SNAPSHOT jdk_toolchain_version=11 # This version takes precedence if 'bootstrap' property passed to project kotlin.version.snapshot=2.0.255-SNAPSHOT diff --git a/integration-test/gradle.properties b/integration-test/gradle.properties index 6880b9919a..bf55d52a30 100644 --- a/integration-test/gradle.properties +++ b/integration-test/gradle.properties @@ -3,7 +3,7 @@ # mainKotlinVersion=2.0.20 -mainLibVersion=1.7.3-SNAPSHOT +mainLibVersion=1.7.4-SNAPSHOT kotlin.code.style=official kotlin.js.compiler=ir