Skip to content

Commit

Permalink
Drop hard requirement on 5.8 and utf8.pm
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Jun 19, 2015
1 parent 0f9b4b5 commit 3f55f71
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Release history for CPAN-Changes-Group-Dependencies-Stats
- Dependencies changed since 0.002004, see misc/*.deps* for details
- configure: +1 (recommends: ↑1)
- develop: +8 ↑3 -2 (recommends: +1, suggests: ↑2)
- runtime: (recommends: +1)
- test: +2 (recommends: +1 ↑1 ↓1)
- runtime: +1 -1 (recommends: +1)
- test: +3 (recommends: +1 ↑1 ↓1)

0.002004 2014-08-30T11:44:41Z
[ 00 Trivial ]
Expand Down
10 changes: 6 additions & 4 deletions lib/CPAN/Changes/Group/Dependencies/Stats.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use 5.008; # utf8
use 5.006;
use strict;
use warnings;
use utf8;

package CPAN::Changes::Group::Dependencies::Stats;

Expand All @@ -17,9 +16,12 @@ use CPAN::Changes 0.30;
use CPAN::Changes::Group;
use CPAN::Meta::Prereqs::Diff;
use MooX::Lsub qw( lsub );
use charnames qw( :full );

extends 'CPAN::Changes::Group';

=encoding utf-8
=for Pod::Coverage FOREIGNBUILDARGS
=cut
Expand All @@ -29,8 +31,8 @@ lsub prelude => sub { [] };
lsub new_prereqs => sub { croak 'Required attribute <new_prereqs> was not provided' };
lsub old_prereqs => sub { croak 'Required attribute <old_prereqs> was not provided' };
lsub symbol_Added => sub { q[+] };
lsub symbol_Upgrade => sub { q[] };
lsub symbol_Downgrade => sub { q[] };
lsub symbol_Upgrade => sub { qq[\N{UPWARDS ARROW}] };
lsub symbol_Downgrade => sub { qq[\N{DOWNWARDS ARROW}] };
lsub symbol_Removed => sub { q[-] };
lsub symbol_Changed => sub { q[~] };

Expand Down
9 changes: 8 additions & 1 deletion misc/Changes.deps
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@ This file contains changes in REQUIRED dependencies for standard CPAN phases (co

0.002005
[ Added / configure requires ]
- perl 5.008
- perl 5.006

[ Added / runtime requires ]
- charnames

[ Added / test requires ]
- Test::Requires
- perl 5.008
- utf8

[ Removed / runtime requires ]
- utf8

0.002004 2014-08-30T11:44:41Z

Expand Down
9 changes: 8 additions & 1 deletion misc/Changes.deps.all
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL depen

0.002005
[ Added / configure requires ]
- perl 5.008
- perl 5.006

[ Added / develop recommends ]
- Test::More 0.99
Expand All @@ -20,12 +20,16 @@ This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL depen
[ Added / runtime recommends ]
- Moo 1.000008

[ Added / runtime requires ]
- charnames

[ Added / test recommends ]
- CPAN::Changes 0.400001

[ Added / test requires ]
- Test::Requires
- perl 5.008
- utf8

[ Changed / configure recommends ]
- ExtUtils::MakeMaker 6.98 → 7.00
Expand All @@ -47,6 +51,9 @@ This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL depen
- Dist::Zilla::Plugin::EOLTests
- Dist::Zilla::Plugin::ReadmeFromPod

[ Removed / runtime requires ]
- utf8

0.002004 2014-08-30T11:44:41Z
[ Added / develop requires ]
- Dist::Zilla::Plugin::Author::KENTNL::RecommendFixes 0.001001
Expand Down

0 comments on commit 3f55f71

Please sign in to comment.