Skip to content

Commit

Permalink
prep next release
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbs committed Sep 5, 2010
1 parent b140113 commit d5c1dd3
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 12 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Revision history for Perl-Critic-Lax

0.008 2010-09-04
update some policies for modern Perl-Critic

0.007 2007-12-30
added ProhibitLeadingZeros::ExceptChmod
Expand Down
1 change: 0 additions & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ lib/Perl/Critic/Policy/Lax/RequireEndWithTrueConst.pm
lib/Perl/Critic/Policy/Lax/RequireExplicitPackage/ExceptForPragmata.pm
Makefile.PL
MANIFEST This list of files
META.yml
README
t/chmod-0xxx.t
t/empty-after-or.t
Expand Down
4 changes: 2 additions & 2 deletions lib/Perl/Critic/Lax.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Perl::Critic::Lax - policies that let you slide on common exceptions
=head1 VERSION
version 0.007
version 0.008
$Id$
=cut

our $VERSION = '0.007';
our $VERSION = '0.008';

=head1 DESCRIPTION
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Seriously, people, they're called subroutines. We've had them since Perl 3.
use Perl::Critic::Utils;
use base qw(Perl::Critic::Policy);

our $VERSION = '0.007';
our $VERSION = '0.008';

my $DESCRIPTION = q{The block given to map should fit on one line.};
my $EXPLANATION = "If it doesn't fit on one line, turn it into a subroutine.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ quotes, except for the empty string when it follows the high-precedence "or" or
use Perl::Critic::Utils;
use base qw(Perl::Critic::Policy);

our $VERSION = '0.007';
our $VERSION = '0.008';

my $DESCRIPTION = q{Quotes used with an empty string, and not as a fallback};
my $EXPLANATION = "Unless you're using the ||'' idiom, use a quotish form.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This is not:
use Perl::Critic::Utils;
use base qw(Perl::Critic::Policy);

our $VERSION = '0.007';
our $VERSION = '0.008';

my $DESCRIPTION = q{Integer with leading zeros outside of chmod};
my $EXPLANATION = "Only use leading zeros on numbers indicating file modes";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Perl::Critic::Policy::Lax::ProhibitStringyEval::ExceptForRequire
=head1 VERSION
version 0.007
version 0.008
=head1 DESCRIPTION
Expand All @@ -35,7 +35,7 @@ something like this:
use Perl::Critic::Utils;
use base qw(Perl::Critic::Policy);

our $VERSION = '0.007';
our $VERSION = '0.008';

my $DESCRIPTION = 'Expression form of "eval" for something other than require';
my $EXPLANATION = <<'END_EXPLANATION';
Expand Down
4 changes: 2 additions & 2 deletions lib/Perl/Critic/Policy/Lax/RequireEndWithTrueConst.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Perl::Critic::Policy::Lax::RequireEndWithTrueConst
=head1 VERSION
version 0.007
version 0.008
=head1 DESCRIPTION
Expand All @@ -32,7 +32,7 @@ Patches welcome.
use Perl::Critic::Utils;
use base qw(Perl::Critic::Policy);

our $VERSION = '0.007';
our $VERSION = '0.008';

my $DESCRIPTION = q{Module does not end with true constant};
my $EXPLANATION = q{Must end with a recognizable true value};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Perl::Critic::Policy::Lax::RequireExplicitPackage::ExceptForPragmata
=head1 VERSION
version 0.007
version 0.008
=head1 DESCRIPTION
Expand All @@ -35,7 +35,7 @@ version.
use Perl::Critic::Utils;
use base qw(Perl::Critic::Policy);

our $VERSION = '0.007';
our $VERSION = '0.008';

my $EXPLANATION = 'Violates encapsulation';
my $DESCRIPTION = 'Code (other than strict/warnings) not in explicit package';
Expand Down

0 comments on commit d5c1dd3

Please sign in to comment.