diff --git a/notes/0.13.14.markdown b/notes/0.13.14.markdown index 10210419c..304d0f8ea 100644 --- a/notes/0.13.14.markdown +++ b/notes/0.13.14.markdown @@ -8,7 +8,7 @@ - Adds "local-preloaded" repository for offline installation. See below. - Notifies and enables users to stay in sbt's shell on the warm JVM by hitting `[ENTER]` while sbt is running. [#2987][2987]/[#2996][2996] by [@dwijnand][@dwijnand] - Adds an `Append` instance to support `sourceGenerators += Def.task { ... }`, instead of needing `.taskValue`. [#2943][2943] by [@eed3si9n][@eed3si9n] -- Writes out the sbt.version in project/build.properties if it is missing. [#754][]/[#3025][] by [@dwijnand][] +- Writes out the sbt.version in `project/build.properties` if it is missing. [#754][754]/[#3025][3025] by [@dwijnand][@dwijnand] - XML generated by JUnitXmlTestsListener now correctly flags ignored, skipped and pending tests. [#2198][2198]/[#2854][2854] by [@ashleymercer][@ashleymercer] - When sbt detects that the project is compiled with dotty, it now automatically sets `scalaCompilerBridgeSource` correctly, this reduces the boilerplate needed @@ -16,6 +16,14 @@ experimental and not officially supported, see [dotty.epfl.ch][dotty] for more information. [#2902][2902] by [@smarter][@smarter] - Updates sbt new's reference implementation to Giter8 0.7.2. +- ScriptedPlugin: Add the ability to paginate scripted tests. + It is now possible to run a subset of scripted tests in a directory at once, + for example: + ``` + scripted source-dependencies/*1of3 + ``` + Will create three pages and run page 1. This is especially useful when running + scripted tests on a CI, to benefit from the available parallelism. [3013][3013] by [@smarter][@smarter] ### Bug fixes @@ -28,6 +36,7 @@ - Fixes IllegalStateException that Ivy gets into sometimes. [#2827][2827]/[#2015][2015] by [@eed3si9n][@eed3si9n] - Fixes null sourceFile causing NPE. [#2766][2766] by [@avdv][@avdv] - Fixes version parsing in validation. [#3011][3011] by [@eed3si9n][@eed3si9n] +- Fixes `Package.makeJar` deleting directory recursively. [#3014][3014] by [@larsrh][@larsrh] ### Maven version range improvement @@ -89,6 +98,8 @@ Special thanks to the contributors for making this release a success. According [2943]: https://github.com/sbt/sbt/pull/2943 [3011]: https://github.com/sbt/sbt/issues/3011 [3025]: https://github.com/sbt/sbt/issues/3025 + [3013]: https://github.com/sbt/sbt/pull/3013 + [3014]: https://github.com/sbt/sbt/pull/3014 [@eed3si9n]: https://github.com/eed3si9n [@dwijnand]: https://github.com/dwijnand [@Duhemm]: https://github.com/Duhemm @@ -98,3 +109,4 @@ Special thanks to the contributors for making this release a success. According [@ashleymercer]: https://github.com/ashleymercer [dotty]: http://dotty.epfl.ch/ [@smarter]: https://github.com/smarter + [@larsrh]: https://github.com/larsrh diff --git a/notes/0.13.14/paginate_scripted_tests.md b/notes/0.13.14/paginate_scripted_tests.md deleted file mode 100644 index 8ffdae83f..000000000 --- a/notes/0.13.14/paginate_scripted_tests.md +++ /dev/null @@ -1,12 +0,0 @@ -### Improvements - -- ScriptedPlugin: Add the ability to paginate scripted tests. - It is now possible to run a subset of scripted tests in a directory at once, - for example: - ``` - scripted source-dependencies/*1of3 - ``` - Will create three pages and run page 1. This is especially useful when running - scripted tests on a CI, to benefit from the available parallelism. - [3013]: https://github.com/sbt/sbt/pull/3013 - [@smarter]: https://github.com/smarter