Skip to content

Commit

Permalink
Prepare for release 1.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Egorand committed Oct 14, 2020
1 parent b257e83 commit 399b102
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Change Log
==========

## Version 1.7.0

_2020-10-14_

* New: Kotlin 1.4.10.
* New: Generated code is now compatible with the [explicit API mode][explicit-api-mode] by default.
* New: Escape soft and modifier keywords, in addition to hard keywords.
* New: Improve enum constants generation for cleaner diffs.
* New: Disallow setters on immutable properties.
* New: Ensure trailing new lines in expression bodies.
* New: Ensure trailing new lines after parameterless custom setters.
* Fix: Don't auto-convert properties with custom accessors to primary constructor properties.
* Fix: Don't allow parameterless setters with body.
* Fix: Prevent auto-wrapping spaces inside escaped keywords.

## Version 1.6.0

_2020-05-28_
Expand Down Expand Up @@ -396,3 +411,4 @@ _2017-05-16_

[kotlinpoet-metadata]: ../kotlinpoet_metadata
[kotlinpoet-metadata-specs]: ../kotlinpoet_metadata_specs
[explicit-api-mode]: https://kotlinlang.org/docs/reference/whatsnew14.html#explicit-api-mode-for-library-authors
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1362,14 +1362,14 @@ Download [the latest .jar][dl] or depend via Maven:
<dependency>
<groupId>com.squareup</groupId>
<artifactId>kotlinpoet</artifactId>
<version>1.6.0</version>
<version>1.7.0</version>
</dependency>
```

or Gradle:

```groovy
implementation("com.squareup:kotlinpoet:1.6.0")
implementation("com.squareup:kotlinpoet:1.7.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.7.0-SNAPSHOT
VERSION_NAME=1.7.0

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

0 comments on commit 399b102

Please sign in to comment.