Skip to content

Commit c5bf640

Browse files
committed
Prepare for release 1.18.1
1 parent 6d75e0b commit c5bf640

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

docs/changelog.md

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,23 @@ Change Log
33

44
## Unreleased
55

6-
* Fix: Fix KT-18706: kotlinpoet now generates import aliases without backticks (#1920)
7-
* For example:
8-
```kotlin
9-
// before, doesn't compile due to KT-18706
10-
import com.example.one.`$Foo` as `One$Foo`
11-
import com.example.two.`$Foo` as `Two$Foo`
12-
13-
// now, compiles
14-
import com.example.one.`$Foo` as One__Foo
15-
import com.example.two.`$Foo` as Two__Foo
16-
```
6+
## Version 1.18.1
7+
8+
Thanks to [@mitasov-ra][mitasov-ra] for contributing to this release.
9+
10+
_2024-07-15_
11+
12+
* Fix: Workaround for [KT-18706][kt-18706]: KotlinPoet now generates import aliases without backticks (#1920).
13+
14+
```kotlin
15+
// before, doesn't compile due to KT-18706
16+
import com.example.one.`$Foo` as `One$Foo`
17+
import com.example.two.`$Foo` as `Two$Foo`
18+
19+
// now, compiles
20+
import com.example.one.`$Foo` as One__Foo
21+
import com.example.two.`$Foo` as Two__Foo
22+
```
1723

1824
## Version 1.18.0
1925

@@ -810,6 +816,7 @@ _2017-05-16_
810816
[ksp-interop-docs]: https://square.github.io/kotlinpoet/interop-ksp/
811817
[javapoet]: https://github.com/square/javapoet
812818
[javapoet-interop-docs]: https://square.github.io/kotlinpoet/interop-javapoet/
819+
[kt-18706]: https://youtrack.jetbrains.com/issue/KT-18706
813820

814821
[martinbonnin]: https://github.com/martinbonnin
815822
[idanakav]: https://github.com/idanakav
@@ -849,3 +856,4 @@ _2017-05-16_
849856
[sgjesse]: https://github.com/sgjesse
850857
[sebek64]: https://github.com/sebek64
851858
[DanielGronau]: https://github.com/DanielGronau
859+
[mitasov-ra]: https://github.com/mitasov-ra

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
org.gradle.jvmargs='-Dfile.encoding=UTF-8'
22

33
GROUP=com.squareup
4-
VERSION_NAME=1.19.0-SNAPSHOT
4+
VERSION_NAME=1.18.1
55

66
POM_URL=https://github.com/square/kotlinpoet
77
POM_SCM_URL=https://github.com/square/kotlinpoet

0 commit comments

Comments
 (0)