prepped for release

[git-p4: depot-paths = "//src/minitest/dev/": change = 8713]
This commit is contained in:
Ryan Davis 2013-06-20 16:36:26 -08:00
parent 363ff3fe7c
commit 335c82a2cf
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
=== 5.0.5 / 2013-06-20
* 6 bug fixes:
* DOH! Fixed the rest of the new casing on Minitest. (splattael)
* Fixed typo on minitest/mock rdoc. (mrgilman/guiceolin)
* Make Spec::DSL.describe_stack thread local to avoid failing on my own tests.
* Make a fake Time.now local to the tests so they won't interfere with real reporter timings.
* Make everything mockable by wrapping all 'special' methods in a smarter wrapper. (bestie)
* Raise ArgumentError if let name starts with 'test'. (johnmaxwell)
=== 5.0.4 / 2013-06-07
* 5 minor enhancements:

View File

@ -4,7 +4,7 @@ require "optparse"
# :include: README.txt
module Minitest
VERSION = "5.0.4" # :nodoc:
VERSION = "5.0.5" # :nodoc:
@@installed_at_exit ||= false
@@after_run = []