prepped for release

[git-p4: depot-paths = "//src/minitest/dev/": change = 9062]
This commit is contained in:
Ryan Davis 2013-12-05 16:14:50 -08:00
parent d8c69bdb20
commit 92b5dea28f
3 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,13 @@
=== 5.1.0 / 2013-12-05
* 1 minor enhancement:
* Use a Queue for scheduling parallel tests. (tenderlove)
* 1 bug fix:
* Fixed misspelling in doco. (amatsuda)
=== 5.0.8 / 2013-09-20
* 1 bug fix:

View File

@ -8,7 +8,8 @@ Hoe.plugin :seattlerb
Hoe.spec 'minitest' do
developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
self.rubyforge_name = "bfts"
license "MIT"
self.testlib = :minitest
end

View File

@ -7,7 +7,7 @@ require "minitest/parallel"
# :include: README.txt
module Minitest
VERSION = "5.0.8" # :nodoc:
VERSION = "5.1.0" # :nodoc:
@@installed_at_exit ||= false
@@after_run = []
@ -19,7 +19,7 @@ module Minitest
# Parallel test executor
mc.send :attr_accessor, :parallel_executor
self.parallel_executor = Parallel::Executor.new (ENV['N'] || 2).to_i
self.parallel_executor = Parallel::Executor.new((ENV['N'] || 2).to_i)
##
# Filter object for backtraces.