Skip to content

Commit

Permalink
Update changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mitasov-ra authored Jun 13, 2024
1 parent a62faff commit f3efd00
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ Change Log
* **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.
* **Fix**: Fix KT-18706 in CodeWriter.generateImports (#1920)
* **Fix**: Fix KT-18706: kotlinpoet now generates import aliases without backticks (#1920)
* For example:
```
// 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
```
* **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.
Expand Down

0 comments on commit f3efd00

Please sign in to comment.