From efe4fdf9e4b905a19b61d624ea5fd5337e8dc6f3 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Tue, 28 Apr 2015 22:51:07 +0100 Subject: [PATCH] Move "New crossScalaVersions default value" to fix with compatibility implications. --- notes/0.13.9/cross-scala-versions-default.markdown | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/notes/0.13.9/cross-scala-versions-default.markdown b/notes/0.13.9/cross-scala-versions-default.markdown index 2bded7c1e..17c2c9543 100644 --- a/notes/0.13.9/cross-scala-versions-default.markdown +++ b/notes/0.13.9/cross-scala-versions-default.markdown @@ -1,12 +1,22 @@ [@dwijnand]: http://github.com/dwijnand [1828]: https://github.com/sbt/sbt/issues/1828 - [1922]: https://github.com/sbt/sbt/pull/1992 + [1992]: https://github.com/sbt/sbt/pull/1992 ### Fixes with compatibility implications +- New `crossScalaVersions` default value, now correctly derives from what `scalaVersion` is set to. See below for more info. + ### Improvements ### Bug fixes -- Fix `crossScalaVersions` default, now correctly derives from the configured `scalaVersion`. [#1828][1828]/[#1992][1992] by [@dwijnand][@dwijnand] +### New `crossScalaVersions` default value + +As of this fix `crossScalaVersions` returns to the behaviour present in `0.12.4` whereby it defaults to what `scalaVersion` +is set to, for example if `scalaVersion` is set to `"2.11.6"`, `crossScalaVersions` now defaults to `Seq("2.11.6")`. + +Therefore when upgrading from any version between `0.13.0` and `0.13.8` please be aware of this new default if your build +setup depended on it. + +[#1828][1828]/[#1992][1992] by [@dwijnand][@dwijnand]