Skip to content

Commit

Permalink
Version 2.00_07
Browse files Browse the repository at this point in the history
  • Loading branch information
schwern committed Feb 28, 2011
1 parent 8c50c54 commit 6d9ec87
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
See README and version control log for Test::Builder2 changes. See README and version control log for Test::Builder2 changes.


2.00_07 2.00_07 Mon, 28 Feb 2011 23:53:22 +1100
Incompatible Changes (since 2.00_01) Incompatible Changes (since 2.00_01)
* TB2::Event::Log now uses symbolic levels, not numeric. This lets us * TB2::Event::Log now uses symbolic levels, not numeric. This lets us
add new levels later. [github 111] add new levels later. [github 111]
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST
Expand Up @@ -170,6 +170,7 @@ t/Formatter/Streamer.t
t/Formatter/TAP/basic.t t/Formatter/TAP/basic.t
t/Formatter/TAP/ending_commentary.t t/Formatter/TAP/ending_commentary.t
t/Formatter/TAP/escapes.t t/Formatter/TAP/escapes.t
t/Formatter/TAP/log.t
t/harness_active.t t/harness_active.t
t/History/History.t t/History/History.t
t/History/HistoryStats.t t/History/HistoryStats.t
Expand Down Expand Up @@ -227,6 +228,7 @@ t/Simple/load.t
t/Simple/no_plan.t t/Simple/no_plan.t
t/Simple/pass.t t/Simple/pass.t
t/skip.t t/skip.t
t/skip_before_plan.t
t/skipall.t t/skipall.t
t/subtest/args.t t/subtest/args.t
t/subtest/basic.t t/subtest/basic.t
Expand Down Expand Up @@ -256,6 +258,7 @@ t/Tester2/ec_untouched.t
t/thread_taint.t t/thread_taint.t
t/threads.t t/threads.t
t/todo.t t/todo.t
t/todo_skip_before_plan.t
t/undef.t t/undef.t
t/use_ok.t t/use_ok.t
t/useing.t t/useing.t
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder.pm
Expand Up @@ -4,7 +4,7 @@ use 5.008001;
use Test::Builder2::Mouse; use Test::Builder2::Mouse;
use Test::Builder2::Types; use Test::Builder2::Types;


our $VERSION = '2.00_06'; our $VERSION = '2.00_07';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval) $VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)


# Conditionally loads threads::shared and fixes up old versions # Conditionally loads threads::shared and fixes up old versions
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder/Module.pm
Expand Up @@ -7,7 +7,7 @@ use Test::Builder;
require Exporter; require Exporter;
our @ISA = qw(Exporter); our @ISA = qw(Exporter);


our $VERSION = '2.00_06'; our $VERSION = '2.00_07';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval) $VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)




Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder/Tester.pm
@@ -1,7 +1,7 @@
package Test::Builder::Tester; package Test::Builder::Tester;


use strict; use strict;
our $VERSION = "1.21_06"; our $VERSION = "1.21_07";


use Test::Builder; use Test::Builder;
use Symbol; use Symbol;
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder/Tester/Color.pm
@@ -1,7 +1,7 @@
package Test::Builder::Tester::Color; package Test::Builder::Tester::Color;


use strict; use strict;
our $VERSION = "1.21_06"; our $VERSION = "1.21_07";


require Test::Builder::Tester; require Test::Builder::Tester;


Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder2/Module.pm
Expand Up @@ -5,7 +5,7 @@ use Test::Builder2::Mouse;
with 'Test::Builder2::CanTry', with 'Test::Builder2::CanTry',
'Test::Builder2::CanLoad'; 'Test::Builder2::CanLoad';


our $VERSION = '2.00_06'; our $VERSION = '2.00_07';
our $CLASS = __PACKAGE__; our $CLASS = __PACKAGE__;


use base 'Exporter'; use base 'Exporter';
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/More.pm
Expand Up @@ -17,7 +17,7 @@ sub _carp {
return warn @_, " at $file line $line\n"; return warn @_, " at $file line $line\n";
} }


our $VERSION = '2.00_06'; our $VERSION = '2.00_07';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval) $VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)


use Test::Builder::Module; use Test::Builder::Module;
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Simple.pm
Expand Up @@ -3,7 +3,7 @@ package Test::Simple;
use 5.008001; use 5.008001;
use strict; use strict;


our $VERSION = '2.00_06'; our $VERSION = '2.00_07';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval) $VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)


use Test::Builder2::Module; use Test::Builder2::Module;
Expand Down

0 comments on commit 6d9ec87

Please sign in to comment.