Skip to content

Commit

Permalink
Remove arbitrary 5.8 and utf8 requirements we didn't need
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Jul 31, 2015
1 parent dc2b898 commit cf8cff3
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release history for Dist-Zilla-Util-ConfigDumper
- Dependencies changed since 0.003006, see misc/*.deps* for details
- configure: +1 (recommends: ↑1)
- develop: +12 ↑3 -3 (recommends: +1, suggests: ↑2)
- runtime: ↓1 -1
- test: +1 (recommends: +1 ↑1 ↓1)

[Documentation]
Expand Down
6 changes: 2 additions & 4 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use strict;
use warnings;

use 5.008;
use 5.006;

use ExtUtils::MakeMaker;

Expand All @@ -15,14 +15,13 @@ my %WriteMakefileArgs = (
"DISTNAME" => "Dist-Zilla-Util-ConfigDumper",
"EXE_FILES" => [],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.008",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "Dist::Zilla::Util::ConfigDumper",
"PREREQ_PM" => {
"Carp" => 0,
"Sub::Exporter::Progressive" => 0,
"Try::Tiny" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
Expand Down Expand Up @@ -59,7 +58,6 @@ my %FallbackPrereqs = (
"Test::More" => "0.89",
"Try::Tiny" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
);

Expand Down
3 changes: 1 addition & 2 deletions lib/Dist/Zilla/Util/ConfigDumper.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 Dist::Zilla::Util::ConfigDumper;

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

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

[Added / test requires]
- perl 5.008
- perl 5.006

[Changed / runtime requires]
- perl 5.008 → 5.006

[Removed / runtime requires]
- utf8

0.003006 2014-10-02T04:27:34Z
[Changed / test requires]
Expand Down
10 changes: 8 additions & 2 deletions 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.003007
[Added / configure requires]
- perl 5.008
- perl 5.006

[Added / develop recommends]
- Test::More 0.99
Expand All @@ -25,7 +25,7 @@ This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL depen
- Moose 2.000

[Added / test requires]
- perl 5.008
- perl 5.006

[Changed / configure recommends]
- ExtUtils::MakeMaker 6.98 → 7.00
Expand All @@ -39,6 +39,9 @@ This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL depen
- Dist::Zilla::App::Command::bakeini 0.001002 → 0.002005
- Dist::Zilla::PluginBundle::Author::KENTNL 2.020003 → 2.025001

[Changed / runtime requires]
- perl 5.008 → 5.006

[Changed / test recommends]
- ExtUtils::MakeMaker 6.98 → 7.00
- Test::More 1.001006 → 0.99
Expand All @@ -48,6 +51,9 @@ This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL depen
- Dist::Zilla::Plugin::MetaYAML
- Dist::Zilla::Plugin::ReadmeFromPod

[Removed / runtime requires]
- utf8

0.003006 2014-10-02T04:27:34Z
[Changed / test requires]
- Dist::Zilla::Plugin::Bootstrap::lib 0.04000000 → 1.000003
Expand Down

0 comments on commit cf8cff3

Please sign in to comment.