From c01770add84c2b9ac8e3f42fc19e363ac94a4af3 Mon Sep 17 00:00:00 2001 From: Egor Andreevich Date: Fri, 5 Jul 2024 13:13:17 +0200 Subject: [PATCH] Prepare for release 1.18.0 --- docs/changelog.md | 23 +++++++++++++++-------- gradle.properties | 2 +- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index c0c33f0b7d..c96480514a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,14 +3,20 @@ Change Log ## Unreleased -* **Fix**: Don't expand typealiases of function types to `LambdaTypeName`s in `KSTypeReference.toTypeName()`. -* **Fix**: Small double and float values were set to 0.0 in %L translation (#1919) -* **Fix**: Fix typealias type argument resolution in KSP2. -* **Enhancement**: Make enum entry references in `KSAnnotation.toAnnotationSpec()` and `KSClassDeclaration.toClassName()` more robust. -* Migrate `kotlinpoet-metadata` to stable `org.jetbrains.kotlin:kotlin-metadata-jvm` artifact for Metadata parsing. -* Promote `kotlinpoet-metadata` out of preview to stable. -* Update to Kotlin `2.0.0`. -* Update to KSP `2.0.0-1.0.22`. +## Version 1.18.0 + +Thanks to [@DanielGronau][DanielGronau] for contributing to this release. + +_2024-07-05_ + + * New: Kotlin 2.0.0. + * New: KSP 2.0.0-1.0.22. + * New: Promote `kotlinpoet-metadata` out of preview to stable. + * New: Migrate `kotlinpoet-metadata` to stable `org.jetbrains.kotlin:kotlin-metadata-jvm` artifact for Metadata parsing. + * New: Make enum entry references in `KSAnnotation.toAnnotationSpec()` and `KSClassDeclaration.toClassName()` more robust. + * Fix: Don't expand typealiases of function types to `LambdaTypeName`s in `KSTypeReference.toTypeName()`. + * Fix: Avoid rounding small double and float values in `%L` translation (#1927). + * Fix: Fix typealias type argument resolution in KSP2 (#1929). ## Version 1.17.0 @@ -830,3 +836,4 @@ _2017-05-16_ [hfhbd]: https://github.com/hfhbd [sgjesse]: https://github.com/sgjesse [sebek64]: https://github.com/sebek64 + [DanielGronau]: https://github.com/DanielGronau diff --git a/gradle.properties b/gradle.properties index d3559edb83..94b5935b9b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ org.gradle.jvmargs='-Dfile.encoding=UTF-8' GROUP=com.squareup -VERSION_NAME=1.18.0-SNAPSHOT +VERSION_NAME=1.18.0 POM_URL=https://github.com/square/kotlinpoet POM_SCM_URL=https://github.com/square/kotlinpoet