prepped for release

[git-p4: depot-paths = "//src/minitest/dev/": change = 12503]
This commit is contained in:
Ryan Davis 2020-01-11 16:24:04 -08:00
parent 1c9ba0c39d
commit d6116044e6
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,16 @@
=== 5.14.0 / 2020-01-11
* 2 minor enhancements:
* Block-assertions (eg assert_output) now error if raised inside the block. (casperisfine)
* Changed assert_raises to only catch Assertion since that covers Skip and friends.
* 3 bug fixes:
* Added example for value wrapper with block to Expectations module. (stomar)
* Fixed use of must/wont_be_within_delta on Expectation instance. (stomar)
* Renamed UnexpectedError#exception to #error to avoid problems with reraising. (casperisfine)
=== 5.13.0 / 2019-10-29
* 9 minor enhancements:

View File

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