1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Gradle Kotlin DSL 0.12.3 Release Notes
============================
Gradle Kotlin DSL v0.12.3 is the final update to the [v0.12.0][v0.12.0] release fixing a breaking change to Kotlin build scripts using the `Property` API.
v0.12.3 is already included in Gradle 4.3 RC4.
To use it, upgrade your Gradle wrapper in the following fashion:
$ cd $YOUR_PROJECT_ROOT
$ gradle wrapper --gradle-version 4.3-rc-4 --distribution-type all
## Breaking changes
Please check out the [v0.12.0][v0.12.0] release notes for details.
Fixes since v0.12.2
----------------------
* **Rename of org.gradle.api.provider.PropertyState to org.gradle.api.provider.Property caused a loss in DSL extension function** ([#574](https://github.com/gradle/kotlin-dsl/issues/574)). The extension members previously only available to `org.gradle.api.provider.PropertyState` are now also available to `org.gradle.api.provider.Property`.
[v0.12.0]: https://github.com/gradle/kotlin-dsl/releases/tag/v0.12.0
|