Skip to content

Commit

Permalink
Bump prereqs to something in the modern era
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg committed Nov 28, 2017
1 parent 02fde81 commit 0148bab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ my %WriteMakefileArgs = (
"NAME" => "Dist::Zilla::Plugin::CheckChangesHasContent",
"PREREQ_PM" => {
"Data::Section" => "0.200002",
"Dist::Zilla" => "2.100950",
"Dist::Zilla" => 6,
"Dist::Zilla::File::InMemory" => 0,
"Dist::Zilla::Role::BeforeRelease" => 0,
"Dist::Zilla::Role::FileGatherer" => 0,
"Dist::Zilla::Role::FileMunger" => 0,
"Dist::Zilla::Role::TextTemplate" => 0,
"List::Util" => 0,
"Moose" => "0.99",
"Moose" => 2,
"Moose::Util::TypeConstraints" => 0,
"Sub::Exporter::ForMethods" => 0,
"autodie" => "2.00",
"namespace::autoclean" => "0.09",
"namespace::autoclean" => "0.28",
"strict" => 0,
"warnings" => 0
},
Expand All @@ -54,7 +54,7 @@ my %FallbackPrereqs = (
"Capture::Tiny" => 0,
"Cwd" => 0,
"Data::Section" => "0.200002",
"Dist::Zilla" => "2.100950",
"Dist::Zilla" => 6,
"Dist::Zilla::File::InMemory" => 0,
"Dist::Zilla::Role::BeforeRelease" => 0,
"Dist::Zilla::Role::FileGatherer" => 0,
Expand All @@ -64,15 +64,15 @@ my %FallbackPrereqs = (
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"List::Util" => 0,
"Moose" => "0.99",
"Moose" => 2,
"Moose::Util::TypeConstraints" => 0,
"Path::Tiny" => 0,
"Sub::Exporter::ForMethods" => 0,
"Test::Fatal" => 0,
"Test::Harness" => 0,
"Test::More" => "0.88",
"autodie" => "2.00",
"namespace::autoclean" => "0.09",
"namespace::autoclean" => "0.28",
"strict" => 0,
"warnings" => 0
);
Expand Down
6 changes: 3 additions & 3 deletions lib/Dist/Zilla/Plugin/CheckChangesHasContent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ package Dist::Zilla::Plugin::CheckChangesHasContent;
our $VERSION = '0.011';

# Dependencies
use Dist::Zilla 2.100950 (); # XXX really the next release after this date
use Dist::Zilla 6 (); # XXX really the next release after this date
use autodie 2.00;
use Moose 0.99;
use Moose 2;
use List::Util 'first';
use namespace::autoclean 0.09;
use namespace::autoclean 0.28;

# extends, roles, attributes, etc.

Expand Down
2 changes: 1 addition & 1 deletion lib/Dist/Zilla/Plugin/Test/ChangesHasContent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ our $VERSION = '0.011';
# Dependencies
use Dist::Zilla;
use autodie 2.00;
use Moose 0.99;
use Moose 2;
use Sub::Exporter::ForMethods;
use Data::Section 0.200002 # encoding and bytes
{ installer => Sub::Exporter::ForMethods::method_installer },
Expand Down

1 comment on commit 0148bab

@karenetheridge
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit broke travis testing on my plugin bundle on perls 5.10 and 5.12, which were previously doing an install of Dist::Zilla@5.047 to get around the new minimum perl restrictions in Dist::Zilla 6 :(

Please sign in to comment.