From dcbbc531edb762a9a6ed8454fee25b6cfea0d46a Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Thu, 13 Aug 2015 00:31:31 +0100 Subject: [PATCH] Add notes for PR 2151. --- notes/0.13.10/def-settings.markdown | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 notes/0.13.10/def-settings.markdown diff --git a/notes/0.13.10/def-settings.markdown b/notes/0.13.10/def-settings.markdown new file mode 100644 index 000000000..f258832a9 --- /dev/null +++ b/notes/0.13.10/def-settings.markdown @@ -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].