diff --git a/Changes b/Changes index 88e1687..2b85397 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,10 @@ Revision history for Dist-Zilla-Plugin-GitHubREADME-Badge {{$NEXT}} + +0.09 2015-04-06 16:32:46 CST - add cpants to defaults + - add GitHub issues badge 0.08 2015-03-25 08:40:40 CST - fix for cpants diff --git a/META.json b/META.json index e066d2f..07c6b3c 100644 --- a/META.json +++ b/META.json @@ -37,7 +37,8 @@ }, "runtime" : { "requires" : { - "Dist::Zilla" : "0" + "Dist::Zilla" : "0", + "Path::Tiny" : "0" } }, "test" : { @@ -58,7 +59,7 @@ "web" : "https://github.com/fayland/perl-Dist-Zilla-Plugin-GitHubREADME-Badge" } }, - "version" : "0.08", + "version" : "0.09", "x_contributors" : [ "Nikolay Mishin " ] diff --git a/Makefile.PL b/Makefile.PL index b63a3b6..2a9bcd3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -20,12 +20,13 @@ my %WriteMakefileArgs = ( "LICENSE" => "perl", "NAME" => "Dist::Zilla::Plugin::GitHubREADME::Badge", "PREREQ_PM" => { - "Dist::Zilla" => 0 + "Dist::Zilla" => 0, + "Path::Tiny" => 0 }, "TEST_REQUIRES" => { "Test::More" => "0.96" }, - "VERSION" => "0.08", + "VERSION" => "0.09", "test" => { "TESTS" => "t/*.t" } @@ -35,6 +36,7 @@ my %WriteMakefileArgs = ( my %FallbackPrereqs = ( "Dist::Zilla" => 0, "ExtUtils::MakeMaker" => 0, + "Path::Tiny" => 0, "Test::More" => "0.96" ); diff --git a/lib/Dist/Zilla/Plugin/GitHubREADME/Badge.pm b/lib/Dist/Zilla/Plugin/GitHubREADME/Badge.pm index ee3e78d..9d115fa 100644 --- a/lib/Dist/Zilla/Plugin/GitHubREADME/Badge.pm +++ b/lib/Dist/Zilla/Plugin/GitHubREADME/Badge.pm @@ -2,7 +2,7 @@ package Dist::Zilla::Plugin::GitHubREADME::Badge; use strict; use 5.008_005; -our $VERSION = '0.08'; +our $VERSION = '0.09'; use Moose; use namespace::autoclean;