Skip to content

Commit

Permalink
Prepare for release 1.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Egorand committed Jul 15, 2024
1 parent 6d75e0b commit c5bf640
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
30 changes: 19 additions & 11 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit c5bf640

Please sign in to comment.