Skip to content

Commit

Permalink
Build results of 8279189 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Aug 31, 2013
1 parent d6d7898 commit 4ffc5a2
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ my %module_build_args = (
"Kent Fredric <kentnl\@cpan.org>"
],
"dist_name" => "Dist-Zilla-Plugin-Bootstrap-lib",
"dist_version" => "0.03000100",
"dist_version" => "0.03000101",
"license" => "perl",
"module_name" => "Dist::Zilla::Plugin::Bootstrap::lib",
"recommends" => {},
Expand Down
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Dist-Zilla-Plugin-Bootstrap-lib

0.03000101 2013-08-31T01:52:46Z
[Bugfix]
- accidental typo with boostrap_dir instead of bootstrap_dir

0.03000100 2013-08-31T01:43:36Z
[!Minor]
- Now shows config in metaconfig with a bit of Moo wizzardry.
Expand Down
9 changes: 4 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"provides" : {
"Dist::Zilla::Plugin::Bootstrap::lib" : {
"file" : "lib/Dist/Zilla/Plugin/Bootstrap/lib.pm",
"version" : "0.03000100"
"version" : "0.03000101"
}
},
"release_status" : "stable",
Expand All @@ -80,7 +80,7 @@
"web" : "https://github.com/kentfredric/Dist-Zilla-Plugin-Bootstrap-lib"
}
},
"version" : "0.03000100",
"version" : "0.03000101",
"x_BuiltWith" : {
"modules" : {
"Cwd" : "3.40",
Expand Down Expand Up @@ -131,12 +131,11 @@
"class" : "Dist::Zilla::Plugin::Bootstrap::lib",
"config" : {
"Dist::Zilla::Plugin::Bootstrap::lib" : {
"fallback" : 1,
"try_built" : "1"
"try_built" : null
}
},
"name" : "Bootstrap::lib",
"version" : "0.03000100"
"version" : "0.03000101"
},
{
"class" : "Dist::Zilla::Plugin::Git::NextVersion",
Expand Down
9 changes: 4 additions & 5 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name: Dist-Zilla-Plugin-Bootstrap-lib
provides:
Dist::Zilla::Plugin::Bootstrap::lib:
file: lib/Dist/Zilla/Plugin/Bootstrap/lib.pm
version: 0.03000100
version: 0.03000101
requires:
Cwd: 0
Moo::HandleMoose::FakeMetaClass: 0
Expand All @@ -33,7 +33,7 @@ resources:
bugtracker: https://github.com/kentfredric/Dist-Zilla-Plugin-Bootstrap-lib/issues
homepage: https://github.com/kentfredric/Dist-Zilla-Plugin-Bootstrap-lib
repository: https://github.com/kentfredric/Dist-Zilla-Plugin-Bootstrap-lib.git
version: 0.03000100
version: 0.03000101
x_BuiltWith:
modules:
Cwd: 3.40
Expand Down Expand Up @@ -78,10 +78,9 @@ x_Dist_Zilla:
class: Dist::Zilla::Plugin::Bootstrap::lib
config:
Dist::Zilla::Plugin::Bootstrap::lib:
fallback: 1
try_built: 1
try_built: ~
name: Bootstrap::lib
version: 0.03000100
version: 0.03000101
-
class: Dist::Zilla::Plugin::Git::NextVersion
name: '@Author::KENTNL/Git::NextVersion'
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ NAME
Dist::Zilla Plug-ins.

VERSION
version 0.03000100
version 0.03000101

SYNOPSIS
[Bootstrap::lib]
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = Perl_5
copyright_holder = Kent Fredric <kentnl@cpan.org>

[Bootstrap::lib]
try_built = 1
;try_built = 1

[@Author::KENTNL]
git_versions = 1
Expand Down
6 changes: 3 additions & 3 deletions lib/Dist/Zilla/Plugin/Bootstrap/lib.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ BEGIN {
$Dist::Zilla::Plugin::Bootstrap::lib::AUTHORITY = 'cpan:KENTNL';
}
{
$Dist::Zilla::Plugin::Bootstrap::lib::VERSION = '0.03000100';
$Dist::Zilla::Plugin::Bootstrap::lib::VERSION = '0.03000101';
}
## use critic;

Expand Down Expand Up @@ -63,7 +63,7 @@ sub _bootstrap_source_lib {

my $libdir = $cwd->child('lib')->stringify;
$logger->log( [ 'bootstrapping %s', $libdir ] );
return _boostrap_dir($libdir);
return _bootstrap_dir($libdir);
}

sub _try_bootstrap_built {
Expand Down Expand Up @@ -169,7 +169,7 @@ Dist::Zilla::Plugin::Bootstrap::lib - A minimal boot-strapping for Dist::Zilla P
=head1 VERSION
version 0.03000100
version 0.03000101
=head1 SYNOPSIS
Expand Down

0 comments on commit 4ffc5a2

Please sign in to comment.