From 7b032e4b232666ee24f150338bad73de65c7b99d Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Wed, 13 Aug 2014 09:59:22 -0500 Subject: [PATCH] Bats 0.4.0 --- README.md | 15 +++++++++++++++ libexec/bats | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6acc05..235bf1e 100644 --- a/README.md +++ b/README.md @@ -235,6 +235,21 @@ on the wiki. ## Version history +*0.4.0* (August 13, 2014) + +* Improved the display of failing test cases. Bats now shows the + source code of failing test lines, along with full stack traces + including function names, filenames, and line numbers. +* Improved the display of the pretty-printed test summary line to + include the number of skipped tests, if any. +* Improved the speed of the preprocessor, dramatically shortening test + and suite startup times. +* Added support for absolute pathnames to the `load` helper. +* Added support for single-line `@test` definitions. +* Added bats(1) and bats(7) manual pages. +* Modified the `bats` command to default to TAP output when the `$CI` + variable is set, to better support environments such as Travis CI. + *0.3.1* (October 28, 2013) * Fixed an incompatibility with the pretty formatter in certain diff --git a/libexec/bats b/libexec/bats index c7c88bc..71f392f 100755 --- a/libexec/bats +++ b/libexec/bats @@ -2,7 +2,7 @@ set -e version() { - echo "Bats 0.3.1" + echo "Bats 0.4.0" } usage() {