Skip to content

Commit

Permalink
import Devel::Cover 0.31
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcj committed Nov 3, 2004
1 parent bf1430b commit 79e5622
Show file tree
Hide file tree
Showing 32 changed files with 92 additions and 89 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Expand Up @@ -180,3 +180,6 @@ Release 0.29 - 19th December 2003

Release 0.30 - 22nd December 2003
- Get things working under Windows.

Release 0.31 - 22nd December 2003
- Remove debugging output. Hmmm.
2 changes: 1 addition & 1 deletion Cover.xs
Expand Up @@ -447,7 +447,7 @@ static void cover_time()
cpu();
#endif
sv_setnv(*count, c);
PDEB(D(L, "Adding time: sum %f at %p\n", c, Profiling_op));
NDEB(D(L, "Adding time: sum %f at %p\n", c, Profiling_op));
}
Profiling_op = PL_op;
}
Expand Down
2 changes: 1 addition & 1 deletion META.yml
@@ -1,7 +1,7 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Devel-Cover
version: 0.30
version: 0.31
version_from:
installdirs: site
requires:
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -19,7 +19,7 @@ use ExtUtils::Manifest "maniread";

$| = 1;

my $Version = "0.30";
my $Version = "0.31";
my $Date = "22nd December 2003";
my $Author = 'pjcj@cpan.org';

Expand Down
6 changes: 3 additions & 3 deletions cover
Expand Up @@ -12,9 +12,9 @@ require 5.6.1;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use Devel::Cover::DB 0.30;
use Devel::Cover::DB 0.31;

use Cwd "abs_path";
use Data::Dumper;
Expand Down Expand Up @@ -250,7 +250,7 @@ See the BUGS file.
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
10 changes: 5 additions & 5 deletions cpancover
Expand Up @@ -12,9 +12,9 @@ require 5.6.1;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use Devel::Cover::DB 0.30;
use Devel::Cover::DB 0.31;

use Cwd ();
use File::Find ();
Expand Down Expand Up @@ -314,7 +314,7 @@ package Devel::Cover::Cpancover::Template::Provider;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Template::Provider";

Expand Down Expand Up @@ -350,7 +350,7 @@ $Templates{html} = <<'EOT';
<!--
This file was generated by Devel::Cover Version 0.30
This file was generated by Devel::Cover Version 0.31
Devel::Cover is copyright 2001-2003, Paul Johnson (pjcj@cpan.org)
Expand Down Expand Up @@ -459,7 +459,7 @@ The following exit values are returned:
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
4 changes: 2 additions & 2 deletions create_gold
Expand Up @@ -12,11 +12,11 @@ require 5.6.1;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use blib;

use Devel::Cover::Test 0.30;
use Devel::Cover::Test 0.31;

my @tests = @ARGV;

Expand Down
6 changes: 3 additions & 3 deletions gcov2perl
Expand Up @@ -12,9 +12,9 @@ require 5.6.1;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use Devel::Cover::DB 0.30;
use Devel::Cover::DB 0.31;

use Getopt::Long;
use Pod::Usage;
Expand Down Expand Up @@ -128,7 +128,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
8 changes: 4 additions & 4 deletions lib/Devel/Cover.pm
Expand Up @@ -10,13 +10,13 @@ package Devel::Cover;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use DynaLoader ();
our @ISA = qw( DynaLoader );

use Devel::Cover::DB 0.30;
use Devel::Cover::Inc 0.30;
use Devel::Cover::DB 0.31;
use Devel::Cover::Inc 0.31;

use B qw( class ppname main_cv main_start main_root walksymtable OPf_KIDS );
use B::Debug;
Expand Down Expand Up @@ -845,7 +845,7 @@ See the BUGS file.
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Branch.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Branch;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Devel::Cover::Criterion";

Expand Down Expand Up @@ -76,7 +76,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Condition.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Condition;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Devel::Cover::Criterion";

Expand Down Expand Up @@ -80,7 +80,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Condition_and_3.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Condition_and_3;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Devel::Cover::Condition";

Expand Down Expand Up @@ -46,7 +46,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Condition_or_2.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Condition_or_2;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Devel::Cover::Condition";

Expand Down Expand Up @@ -46,7 +46,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Condition_or_3.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Condition_or_3;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Devel::Cover::Condition";

Expand Down Expand Up @@ -46,7 +46,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Condition_xor_4.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Condition_xor_4;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Devel::Cover::Condition";

Expand Down Expand Up @@ -45,7 +45,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
26 changes: 13 additions & 13 deletions lib/Devel/Cover/Criterion.pm
Expand Up @@ -10,18 +10,18 @@ package Devel::Cover::Criterion;
use strict;
use warnings;

our $VERSION = "0.30";

use Devel::Cover::Statement 0.30;
use Devel::Cover::Branch 0.30;
use Devel::Cover::Condition 0.30;
use Devel::Cover::Condition_or_2 0.30;
use Devel::Cover::Condition_or_3 0.30;
use Devel::Cover::Condition_and_3 0.30;
use Devel::Cover::Condition_xor_4 0.30;
use Devel::Cover::Subroutine 0.30;
use Devel::Cover::Time 0.30;
use Devel::Cover::Pod 0.30;
our $VERSION = "0.31";

use Devel::Cover::Statement 0.31;
use Devel::Cover::Branch 0.31;
use Devel::Cover::Condition 0.31;
use Devel::Cover::Condition_or_2 0.31;
use Devel::Cover::Condition_or_3 0.31;
use Devel::Cover::Condition_and_3 0.31;
use Devel::Cover::Condition_xor_4 0.31;
use Devel::Cover::Subroutine 0.31;
use Devel::Cover::Time 0.31;
use Devel::Cover::Pod 0.31;

sub new
{
Expand Down Expand Up @@ -79,7 +79,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
8 changes: 4 additions & 4 deletions lib/Devel/Cover/DB.pm
Expand Up @@ -10,10 +10,10 @@ package Devel::Cover::DB;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use Devel::Cover::DB::File 0.30;
use Devel::Cover::Criterion 0.30;
use Devel::Cover::DB::File 0.31;
use Devel::Cover::Criterion 0.31;

use Carp;
use File::Path;
Expand Down Expand Up @@ -580,7 +580,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
6 changes: 3 additions & 3 deletions lib/Devel/Cover/DB/File.pm
Expand Up @@ -10,9 +10,9 @@ package Devel::Cover::DB::File;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use Devel::Cover::Criterion 0.30;
use Devel::Cover::Criterion 0.31;

sub calculate_summary
{
Expand Down Expand Up @@ -78,7 +78,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
2 changes: 1 addition & 1 deletion lib/Devel/Cover/Op.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Op;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use Devel::Cover qw( -ignore blib -ignore \\wB\\w -indent 1 );
use B::Concise qw( set_style add_callback );
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Pod.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Pod;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Devel::Cover::Criterion";

Expand Down Expand Up @@ -72,7 +72,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down
4 changes: 2 additions & 2 deletions lib/Devel/Cover/Report/Html.pm
Expand Up @@ -10,7 +10,7 @@ package Devel::Cover::Report::Html;
use strict;
use warnings;

our $VERSION = "0.30";
our $VERSION = "0.31";

use base "Devel::Cover::Report::Html_minimal";

Expand Down Expand Up @@ -45,7 +45,7 @@ Huh?
=head1 VERSION
Version 0.30 - 22nd December 2003
Version 0.31 - 22nd December 2003
=head1 LICENCE
Expand Down

0 comments on commit 79e5622

Please sign in to comment.