Skip to content

Commit

Permalink
Prepare for release 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Egorand committed Jun 22, 2021
1 parent 5a1d352 commit 03fa190
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
Change Log
==========

## Version 1.9.0

_2021-06-22_

* New: Kotlin 1.5.10.
* New: Previously deprecated API to interop with Java reflection and Mirror API have been
un-deprecated and marked with `@DelicateKotlinPoetApi` annotation.
* New: `CodeBlock.Builder.withIndent` helper function.
* New: Allow changing initializers and default values in `ParameterSpec.Builder` and
`PropertySpec.Builder` after they were set.
* New: `MemberName.isExtension` property that instructs KotlinPoet to always import the member,
even if conflicting declarations are present in the same scope.
* Fix: Escape member names that only contain underscores.
* Fix: Always emit an empty primary constructor if it was set via `TypeSpec.primaryConstructor`.

## Version 1.8.0

_2021-03-29_


* New: Kotlin 1.4.31.
* New: Add `KModifier.VALUE` to support `value class` declarations.
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1370,14 +1370,14 @@ Download [the latest .jar][dl] or depend via Maven:
<dependency>
<groupId>com.squareup</groupId>
<artifactId>kotlinpoet</artifactId>
<version>1.8.0</version>
<version>1.9.0</version>
</dependency>
```

or Gradle:

```groovy
implementation("com.squareup:kotlinpoet:1.8.0")
implementation("com.squareup:kotlinpoet:1.9.0")
```

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
Expand Down
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.9.0-SNAPSHOT
VERSION_NAME=1.9.0

POM_URL=https://github.com/square/kotlinpoet
POM_SCM_URL=https://github.com/square/kotlinpoet
Expand Down

0 comments on commit 03fa190

Please sign in to comment.