Add notes for PR 2151.

This commit is contained in:
Dale Wijnand 2015-08-13 00:31:31 +01:00
parent 13c6729507
commit dcbbc531ed
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
[@dwijnand]: http://github.com/dwijnand
[2151]: https://github.com/sbt/sbt/pull/2151
### Fixes with compatibility implications
### Improvements
- Adds `Def.settings`, which facilitates mixing settings with seq of settings. See below.
### Bug fixes
### `Def.settings`
Using `Def.settings` it is now possible to nicely define settings as such:
val modelSettings = Def.settings(
sharedSettings,
libraryDependencies += foo
)
[#2151][2151] by [@dwijnand][@dwijnand].