From b065d979e75514caed127322e3a6d5178426dca3 Mon Sep 17 00:00:00 2001 From: Kent Fredric Date: Sun, 17 Jul 2011 12:54:55 +1200 Subject: [PATCH 1/3] Fix Autopreqs skip issue, changelog update --- Changes | 8 ++++++++ dist.ini | 2 +- lib/Dist/Zilla/PluginBundle/Author/KENTNL.pm | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 82747148..4c731a91 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,14 @@ Revision history for {{$dist->name}} {{$NEXT}} + [Bugs] + - Fixed an issue where the change of Dzil's Autoprereqs 'skip' parameter + started taking an array instead, by using an array. ( External interface + is still the same though ) + + [Dependencies] + - Dist::Zilla 4.200011 is now the minimum requirement, as that has the + adjusted Autoprereqs 1.0.12 2011-07-12T09:57:41Z [Dependencies::Tests] diff --git a/dist.ini b/dist.ini index de98569f..103182ef 100644 --- a/dist.ini +++ b/dist.ini @@ -28,7 +28,7 @@ Dist::Zilla::Plugin::Bootstrap::lib = 0 [Prereqs] Dist::Zilla = 4.101612 -Dist::Zilla::Plugin::AutoPrereqs = 0 +Dist::Zilla::Plugin::AutoPrereqs = 4.200011 ; skip takes an array Dist::Zilla::Plugin::AutoVersion::Relative = 0.01035617 Dist::Zilla::Plugin::CompileTests = 1.110930 ; Avoid rt #67183 Dist::Zilla::Plugin::CriticTests = 1.102280 diff --git a/lib/Dist/Zilla/PluginBundle/Author/KENTNL.pm b/lib/Dist/Zilla/PluginBundle/Author/KENTNL.pm index 2e9f2fca..0b1b51c0 100644 --- a/lib/Dist/Zilla/PluginBundle/Author/KENTNL.pm +++ b/lib/Dist/Zilla/PluginBundle/Author/KENTNL.pm @@ -228,7 +228,7 @@ sub bundle_config { [ 'ReadmeFromPod' => {} ], [ 'ManifestSkip' => {} ], [ 'Manifest' => {} ], - [ 'AutoPrereqs' => { skip => _defined_or( $arg, auto_prereqs_skip => q{}, 1 ) } ], + [ 'AutoPrereqs' => { skip => [ _defined_or( $arg , auto_prereqs_skip => qw{}, 1 )] } ], [ 'Prereqs' => { -name => 'BundleDevelNeeds', From 71f9e825c552c392d0d1aeea11b5ad5f8f5069c3 Mon Sep 17 00:00:00 2001 From: Kent Fredric Date: Sun, 17 Jul 2011 12:59:31 +1200 Subject: [PATCH 2/3] update changelog --- Changes | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Changes b/Changes index 4c731a91..5eb85458 100644 --- a/Changes +++ b/Changes @@ -10,6 +10,9 @@ Revision history for {{$dist->name}} - Dist::Zilla 4.200011 is now the minimum requirement, as that has the adjusted Autoprereqs + [Packaging] + - Web metadata now uses HTTPS:// urls. + 1.0.12 2011-07-12T09:57:41Z [Dependencies::Tests] - Version explicit dependency added to Test::File::ShareDir 0.3.0 which is From f2d192db3858f922b649c8f82e0b91f26152b4ba Mon Sep 17 00:00:00 2001 From: Kent Fredric Date: Sun, 17 Jul 2011 13:24:42 +1200 Subject: [PATCH 3/3] v1.0.13 [Bugs] - Fixed an issue where the change of Dzil's Autoprereqs 'skip' parameter started taking an array instead, by using an array. ( External interface is still the same though ) [Dependencies] - Dist::Zilla 4.200011 is now the minimum requirement, as that has the adjusted Autoprereqs [Packaging] - Web metadata now uses HTTPS:// urls. --- Changes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changes b/Changes index 5eb85458..e29b2b32 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for {{$dist->name}} {{$NEXT}} + +1.0.13 2011-07-17T01:06:15Z [Bugs] - Fixed an issue where the change of Dzil's Autoprereqs 'skip' parameter started taking an array instead, by using an array. ( External interface