From c5bf640d1db3611cc65cdb59199e4db9e312438c Mon Sep 17 00:00:00 2001 From: Egor Andreevich Date: Mon, 15 Jul 2024 12:21:38 +0200 Subject: [PATCH] Prepare for release 1.18.1 --- docs/changelog.md | 30 +++++++++++++++++++----------- gradle.properties | 2 +- 2 files changed, 20 insertions(+), 12 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 558b6e9bd0..4ea3ee324e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,17 +3,23 @@ Change Log ## Unreleased - * Fix: Fix KT-18706: kotlinpoet now generates import aliases without backticks (#1920) - * For example: - ```kotlin - // before, doesn't compile due to KT-18706 - import com.example.one.`$Foo` as `One$Foo` - import com.example.two.`$Foo` as `Two$Foo` - - // now, compiles - import com.example.one.`$Foo` as One__Foo - import com.example.two.`$Foo` as Two__Foo - ``` +## Version 1.18.1 + +Thanks to [@mitasov-ra][mitasov-ra] for contributing to this release. + +_2024-07-15_ + + * Fix: Workaround for [KT-18706][kt-18706]: KotlinPoet now generates import aliases without backticks (#1920). + + ```kotlin + // before, doesn't compile due to KT-18706 + import com.example.one.`$Foo` as `One$Foo` + import com.example.two.`$Foo` as `Two$Foo` + + // now, compiles + import com.example.one.`$Foo` as One__Foo + import com.example.two.`$Foo` as Two__Foo + ``` ## Version 1.18.0 @@ -810,6 +816,7 @@ _2017-05-16_ [ksp-interop-docs]: https://square.github.io/kotlinpoet/interop-ksp/ [javapoet]: https://github.com/square/javapoet [javapoet-interop-docs]: https://square.github.io/kotlinpoet/interop-javapoet/ + [kt-18706]: https://youtrack.jetbrains.com/issue/KT-18706 [martinbonnin]: https://github.com/martinbonnin [idanakav]: https://github.com/idanakav @@ -849,3 +856,4 @@ _2017-05-16_ [sgjesse]: https://github.com/sgjesse [sebek64]: https://github.com/sebek64 [DanielGronau]: https://github.com/DanielGronau + [mitasov-ra]: https://github.com/mitasov-ra diff --git a/gradle.properties b/gradle.properties index d7e74c9b6a..9b59502aeb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ org.gradle.jvmargs='-Dfile.encoding=UTF-8' GROUP=com.squareup -VERSION_NAME=1.19.0-SNAPSHOT +VERSION_NAME=1.18.1 POM_URL=https://github.com/square/kotlinpoet POM_SCM_URL=https://github.com/square/kotlinpoet