Skip to content

Commit

Permalink
prepped for release
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//src/minitest/dev/": change = 9062]
  • Loading branch information
zenspider committed Dec 6, 2013
1 parent d8c69bd commit 92b5dea
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Hoe.plugin :seattlerb
Hoe.spec 'minitest' do
developer 'Ryan Davis', '[email protected]'

self.rubyforge_name = "bfts"
license "MIT"

self.testlib = :minitest
end

Expand Down
4 changes: 2 additions & 2 deletions lib/minitest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# :include: README.txt

module Minitest
VERSION = "5.0.8" # :nodoc:
VERSION = "5.1.0" # :nodoc:

@@installed_at_exit ||= false
@@after_run = []
Expand All @@ -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.
Expand Down

0 comments on commit 92b5dea

Please sign in to comment.