Skip to content

Commit

Permalink
Merge branch 'master' of git://github.com/pjcj/Devel--Cover
Browse files Browse the repository at this point in the history
  • Loading branch information
maspalio committed Mar 31, 2012
2 parents 45ca8f8 + 8575819 commit c2b1e10
Show file tree
Hide file tree
Showing 13 changed files with 328 additions and 217 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Devel::Cover history

{{$NEXT}}

Release 0.83 - 30th March 2012
- Prefer JSON::XS for faster operation
- Rework testing framework (Xavier Caron)

Release 0.82 - 19th March 2012
- Do not distribute MYMETA.json (Olivier Mengué) (rt 75883).

Expand Down
7 changes: 5 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use File::Copy;

$| = 1;

my $Version = "0.82_01";
my $Version = "0.83";
my $Author = 'pjcj@cpan.org';
my @perlbug = ("perlbug", "-a", $Author,
"-s", "Installation of Devel::Cover $Version");
Expand Down Expand Up @@ -124,7 +124,10 @@ use lib "$base/t";
use Devel::Cover::Test;
Devel::Cover::Test->new("$t")->run_test;
my \$test = Devel::Cover::Test->new("$t");
\$test->run_test;
no warnings;
\$test # for create_gold
EOT
close T or die "Cannot close t/e2e/a$t.t: $!";
}
Expand Down
1 change: 1 addition & 0 deletions docs/RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@
8. Push the changes.
- The dzil Git::Push plugin hangs for me
$ git push
$ git push --tags
Loading

0 comments on commit c2b1e10

Please sign in to comment.