diff --git a/History.rdoc b/History.rdoc index 81194b1b..156e721f 100644 --- a/History.rdoc +++ b/History.rdoc @@ -1,3 +1,16 @@ +=== 5.23.0 / 2024-05-15 + +* 3 minor enhancements: + + * Added -Werror to raise on any warning output. (byroot) + * Added UnexpectedWarning as a failure summary type, added count to output if activated. + * Added minitest/manual_plugins.rb w/ new Minitest.load method. (tenderlove) + +* 2 bug fixes: + + * Allow empty_run! and reporter to display summary for empty runs. (zzak) + * Make test task verbose using either rake's -v or -t (was just -t). + === 5.22.3 / 2024-03-13 * 1 minor enhancement: diff --git a/lib/minitest.rb b/lib/minitest.rb index 820f0639..ca79f7cb 100644 --- a/lib/minitest.rb +++ b/lib/minitest.rb @@ -9,7 +9,7 @@ # :include: README.rdoc module Minitest - VERSION = "5.22.3" # :nodoc: + VERSION = "5.23.0" # :nodoc: @@installed_at_exit ||= false @@after_run = []