Skip to content

Commit

Permalink
Merge pull request #6720 from gradle/bamboo/release/kotlin-dsl-1.0-rc-6
Browse files Browse the repository at this point in the history
Upgrade Kotlin DSL to 1.0-RC6
  • Loading branch information
bamboo committed Sep 11, 2018
2 parents 64c0b04 + 6c5d60f commit 1fb722b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.gradle.internal.os.OperatingSystem

object BuildEnvironment {
val isCiServer = "CI" in System.getenv()
val gradleKotlinDslVersion = "1.0-rc-5"
val gradleKotlinDslVersion = "1.0-rc-6"
val jvm = org.gradle.internal.jvm.Jvm.current()
val javaVersion = JavaVersion.current()
val isWindows = OperatingSystem.current().isWindows
Expand Down
6 changes: 3 additions & 3 deletions subprojects/docs/src/docs/release/notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This will result in significantly reduced Java compilation time in subsequent bu
Chances are caches in those `.gradle/` directories have accumulated a few (or a few dozen) gigabytes over time.
If so, you'll be relieved to know that Gradle will now [periodically clean up unused `/caches`](#periodic-cache-cleanup) under `GRADLE_USER_HOME` and project root directories.

A moment you have anticipated is nearly here, as the [Kotlin DSL reaches version 1.0 RC5](https://github.com/gradle/kotlin-dsl/releases/tag/v1.0-RC5).
A moment you have anticipated is nearly here, as the [Kotlin DSL reaches version 1.0 RC6](https://github.com/gradle/kotlin-dsl/releases/tag/v1.0-RC6).
Configuration avoidance, `buildSrc` refactoring propagation to the IDE, and lots of DSL polish make this the release to try.
Gradle Kotlin DSL 1.0 will ship with the next version of Gradle, 5.0.
Read [this blog post](https://blog.gradle.org/gradle-kotlin-dsl-release-candidate) for guidance on trying the Kotlin DSL and submitting feedback.
Expand Down Expand Up @@ -54,7 +54,7 @@ Caching has always been one of the strong suits of Gradle. Over time, more and m

### Kotlin DSL 1.0 RC

[Kotlin DSL version 1.0 RC](https://github.com/gradle/kotlin-dsl/releases/tag/v1.0-RC5) is now available. Major updates from v0.18 include:
[Kotlin DSL version 1.0 RC](https://github.com/gradle/kotlin-dsl/releases/tag/v1.0-RC6) is now available. Major updates from v0.18 include:

* API Documentation in IDE and reference forms
* Script compilation build cache
Expand Down Expand Up @@ -160,7 +160,7 @@ Previously it was located at `project.java.sourceSets`, or just `java.sourceSets

All these changes could cause script compilation errors.

See the [Gradle Kotlin DSL release notes](https://github.com/gradle/kotlin-dsl/releases/tag/v1.0-RC5) for more information and how to fix builds broken by the changes described above.
See the [Gradle Kotlin DSL release notes](https://github.com/gradle/kotlin-dsl/releases/tag/v1.0-RC6) for more information and how to fix builds broken by the changes described above.

### Restricting cross-configuration and lifecycle hooks from lazy configuration APIs

Expand Down
2 changes: 1 addition & 1 deletion subprojects/docs/src/docs/release/release-features.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- Incremental Java compilation by default
- Periodic Gradle caches cleanup
- Gradle Kotlin DSL 1.0-RC5
- Gradle Kotlin DSL 1.0-RC6
- Nested included builds
- SNAPSHOT plugin versions in the `plugins {}` block

0 comments on commit 1fb722b

Please sign in to comment.