prepped for release

[git-p4: depot-paths = "//src/minitest/dev/": change = 12654]
This commit is contained in:
Ryan Davis 2020-05-15 20:15:42 -08:00
parent 65664a151d
commit 32d49db55d
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,15 @@
=== 5.14.1 / 2020-05-15
* 3 minor enhancements:
* Minitest.filter_backtrace returns original backtrace if filter comes back empty.
* Minitest::BacktraceFilter now returns entire backtrace if $MT_DEBUG set in env.
* Return true on a successful refute. (jusleg)
* 1 bug fix:
* Fixed expectation doco to not use global expectations.
=== 5.14.0 / 2020-01-11
* 2 minor enhancements:

View File

@ -8,7 +8,7 @@ require "stringio"
# :include: README.rdoc
module Minitest
VERSION = "5.14.0" # :nodoc:
VERSION = "5.14.1" # :nodoc:
ENCS = "".respond_to? :encoding # :nodoc:
@@installed_at_exit ||= false