From 530ea3846629ba211c915d2eb5e7d0b611e3f7db Mon Sep 17 00:00:00 2001 From: Sterling Greene Date: Tue, 21 Jul 2015 23:53:33 -0400 Subject: [PATCH] Change Zinc compiler version warning in release notes +review REVIEW-5558 --- subprojects/docs/src/docs/release/notes.md | 6 +++--- .../gradle/api/internal/tasks/scala/ZincScalaCompiler.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/subprojects/docs/src/docs/release/notes.md b/subprojects/docs/src/docs/release/notes.md index 04295e710e1b..919c76ace7eb 100644 --- a/subprojects/docs/src/docs/release/notes.md +++ b/subprojects/docs/src/docs/release/notes.md @@ -157,9 +157,9 @@ These incubating methods will be removed in the next minor version. * Removed `FunctionalSourceSet.copy()` -### Updated default Scala Zinc compiler version for Play applications +### Updated default Scala Zinc compiler version -The default version of the Scala Zinc compiler used for Play applications has changed from 0.3.0 to 0.3.5.3. +The default version of the Scala Zinc compiler has changed from 0.3.5.3 to 0.3.7. ### Changes to source set handling of binaries @@ -180,7 +180,7 @@ We would like to thank the following community members for making contributions * [Ben Blank](https://github.com/benblank) - Allow CopySpec.filter() to remove lines * [Steve Ebersole](https://github.com/sebersole) - Support for passing arbitrary arguments to FindBugs tasks * [Malte Finsterwalder](https://github.com/finsterwalder) - Fixed resolving of references to `${parent.artifactId}` in POM files (GRADLE-3299) -* [Ethan Hall](https://github.com/ethankhall) - Update Scala Zinc compiler version for Play (GRADLE-3319) +* [Ethan Hall](https://github.com/ethankhall) - Update Scala Zinc compiler version to work with Java 8 (GRADLE-3319) * [Jordan Jennings](https://github.com/jordanjennings) - Documentation improvements * [Roy Kachouh](https://github.com/roykachouh) - Fix for Application plugin script generation in projects with alphanumeric names * [Zoltán Kurucz](https://github.com/qzole) - Documentation improvements diff --git a/subprojects/language-scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java b/subprojects/language-scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java index 15dfec02d37b..c49d517b848d 100644 --- a/subprojects/language-scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java +++ b/subprojects/language-scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompiler.java @@ -86,7 +86,7 @@ private static IncOptions getIncOptions() { boolean transactional = false; Option backup = Option.empty(); - // We need to use the deprecated constructor as it is compatible with certain previous versions of the Zince compiler + // We need to use the deprecated constructor as it is compatible with certain previous versions of the Zinc compiler @SuppressWarnings("deprecation") IncOptions options = new IncOptions(transitiveStep, recompileAllFraction, relationsDebug, apiDebug, apiDiffContextSize, apiDumpDirectory, transactional, backup); return options;