Skip to content

Commit

Permalink
Version 0.98_01
Browse files Browse the repository at this point in the history
  • Loading branch information
schwern committed Nov 9, 2011
1 parent cc02953 commit fff6727
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,4 +1,4 @@
0.98_01
0.98_01 Tue Nov 8 17:07:58 PST 2011
Bug Fixes
* BAIL_OUT works inside a subtest. (Larry Leszczynski) [github #138]
* subtests now work with threads turned on. [github #145]
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Expand Up @@ -116,6 +116,7 @@ t/Simple/load.t
t/skip.t
t/skipall.t
t/subtest/args.t
t/subtest/bail_out.t
t/subtest/basic.t
t/subtest/die.t
t/subtest/do.t
Expand All @@ -127,6 +128,7 @@ t/subtest/line_numbers.t
t/subtest/plan.t
t/subtest/predicate.t
t/subtest/singleton.t
t/subtest/threads.t
t/subtest/todo.t
t/subtest/wstat.t
t/tbm_doesnt_set_exported_to.t
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder.pm
Expand Up @@ -4,7 +4,7 @@ use 5.006;
use strict;
use warnings;

our $VERSION = '0.98';
our $VERSION = '0.98_01';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)

BEGIN {
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Builder/Module.pm
Expand Up @@ -7,7 +7,7 @@ use Test::Builder 0.98;
require Exporter;
our @ISA = qw(Exporter);

our $VERSION = '0.98';
our $VERSION = '0.98_01';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)


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";
}

our $VERSION = '0.98';
our $VERSION = '0.98_01';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)

use Test::Builder::Module 0.98;
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/Simple.pm
Expand Up @@ -4,7 +4,7 @@ use 5.006;

use strict;

our $VERSION = '0.98';
our $VERSION = '0.98_01';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)

use Test::Builder::Module 0.98;
Expand Down

0 comments on commit fff6727

Please sign in to comment.