New: Add builder for FunSpec which accepts a MemberName (#1574).
Fix: Omit public modifier on override function or constructor parameters (#1550).
Fix: Correct handling of members in various types (#1558).
Fix: Function return types now default to Unit unless explicitly set (#1559).
Previously the default was null which behaved like Unit for block bodies. When an expression body was produced,
however, no return type would be emitted. This meant that the return type was implicit based on the contents of
the body.
With this change, when no return type is specified and an expression body is produced, the return type will be
explicitly Unit. Specify the actual return type explicitly to correct the output.
Old versions:
val funSpec = FunSpec.builder("foo")
.addStatement("return 1")
.build()
public fun foo() = 1
This version, incorrect:
val funSpec = FunSpec.builder("foo")
.addStatement("return 1")
.build()
New: Add builder for FunSpec which accepts a MemberName (#1574).
Fix: Omit public modifier on override function or constructor parameters (#1550).
Fix: Correct handling of members in various types (#1558).
Fix: Function return types now default to Unit unless explicitly set (#1559).
Previously, when FunSpec didn't have a return type specified and an expression body was produced, no return
type would be emitted. However, starting from 1.14.0, KotlinPoet will not add Unit as a return type in such
cases. In order to correct the generated output, you are to specify the actual return type of the FunSpec.
Before 1.14.0, if omitted, no return type is produced:
val funSpec = FunSpec.builder("foo")
.addStatement("return 1")
.build()
public fun foo() = 1
From 1.14.0, the return type defaults to Unit if not otherwise set:
val funSpec = FunSpec.builder("foo")
.addStatement("return 1")
.build()
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps com.squareup:kotlinpoet from 1.12.0 to 1.14.2.
Release notes
Sourced from com.squareup:kotlinpoet's releases.
... (truncated)
Changelog
Sourced from com.squareup:kotlinpoet's changelog.
... (truncated)
Commits
cfacd26
Prepare for release 1.14.25a951ab
Update dependency mkdocs-material to v9.1.154e182d9
Fix one more missing API in binary compatibility override in Annotatable.Buil...7985f10
Prepare next development versiona60941e
Prepare for release 1.14.18b2c0fb
Restore ABI stability for annotatable and documentable builders (#1580)60491f2
Prepare next development versiona9917e7
Prepare for release 1.14.02c3dbb8
Merge pull request #1575 from drawers/fix/1525cf2e019
Update dependency com.google.guava:guava to v32 (#1577)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)