From 3a666705a6fe8075410bbad51857a3c82b8d5ea0 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Mon, 25 Sep 2017 14:08:41 -0400 Subject: [PATCH] Add release note --- notes/1.1.0/filter-scripted-tests.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 notes/1.1.0/filter-scripted-tests.md diff --git a/notes/1.1.0/filter-scripted-tests.md b/notes/1.1.0/filter-scripted-tests.md new file mode 100644 index 000000000..4f216e9c2 --- /dev/null +++ b/notes/1.1.0/filter-scripted-tests.md @@ -0,0 +1,14 @@ +[@jonas]: https://github.com/jonas + +[#3564]: https://github.com/sbt/sbt/issues/3564 +[#3566]: https://github.com/sbt/sbt/pull/3566 + +### Improvements + +- Filter scripted tests based on optional `project/build.properties`. [#3564]/[#3566] by [@jonas] + +### Filtering scripted tests using `project/build.properties`. + +For all scripted tests in which `project/build.properties` exist, the value of the `sbt.version` property is read. If its binary version is different from `sbtBinaryVersion in pluginCrossBuild` the test will be skipped and a message indicating this will be logged. + +This allows you to define scripted tests that track the minimum supported sbt versions, e.g. 0.13.9 and 1.0.0-RC2.