Skip to content

Commit

Permalink
0.09
Browse files Browse the repository at this point in the history
  • Loading branch information
fayland committed Apr 6, 2015
1 parent 556e384 commit 2e0035c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
},
"runtime" : {
"requires" : {
"Dist::Zilla" : "0"
"Dist::Zilla" : "0",
"Path::Tiny" : "0"
}
},
"test" : {
Expand All @@ -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 <mi@ya.ru>"
]
Expand Down
6 changes: 4 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand All @@ -35,6 +36,7 @@ my %WriteMakefileArgs = (
my %FallbackPrereqs = (
"Dist::Zilla" => 0,
"ExtUtils::MakeMaker" => 0,
"Path::Tiny" => 0,
"Test::More" => "0.96"
);

Expand Down
2 changes: 1 addition & 1 deletion lib/Dist/Zilla/Plugin/GitHubREADME/Badge.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2e0035c

Please sign in to comment.