1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Gradle Kotlin DSL 0.13.2 Release Notes
=============================
Gradle Kotlin DSL v0.13.2 fixes a regression in [v0.13.1][v0.13.1] that prevented the use of nested Kotlin build scripts together with the `--scan` command line option.
v0.13.2 will be included in the upcoming Gradle 4.4.1.
The features in this release are also available for immediate use within the latest Gradle Kotlin DSL distribution snapshot. To use it, upgrade your Gradle wrapper in the following fashion:
$ cd $YOUR_PROJECT_ROOT
$ gradle wrapper --gradle-distribution-url https://repo.gradle.org/gradle/dist-snapshots/gradle-kotlin-dsl-4.4-20171208150335+0000-all.zip
Once Gradle 4.4.1 is out, we encourage all users to upgrade in the following fashion:
To use it, upgrade your Gradle wrapper in the following fashion:
$ cd $YOUR_PROJECT_ROOT
$ gradle wrapper --gradle-version 4.4.1 --distribution-type all
## Breaking changes
_There are no breaking changes upgrading from 0.13.1 to 0.13.2._
Fixes since v0.13.1
-------------------
* **Plugin with id 'com.gradle.build-scan' not found** (gradle/gradle#3759).
[v0.13.1]: https://github.com/gradle/kotlin-dsl/releases/tag/v0.13.1
|