Add warning about incompatible parser.

This commit is contained in:
Josh Suereth 2014-10-24 18:52:12 -04:00
parent bd2fef571e
commit 62d170f717
1 changed files with 6 additions and 0 deletions

View File

@ -39,6 +39,12 @@
### Fixes with compatibility implications
- Maven artifact dependencies will limit their transitive dependencies to `Compile` rather than *every configuration* if no `master` configuration is found. [#1586][1586] by [@jsuereth][@jsuereth]
- The new natural whitspace handling parser is unable to cope with certain classes of Scala syntax. In particular, top-level pattern matches, or multi-value defintions are no longer supported:
val x, y = project // BAD
val x = project //
val y = project // GOOD
### Improvements