Skip to content

Commit

Permalink
Build results of 76bccba (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Aug 30, 2013
1 parent 68f69a1 commit fbfdc21
Show file tree
Hide file tree
Showing 13 changed files with 419 additions and 262 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: perl
perl:
- "5.16"
- "5.14"
- "5.18"
- "5.19"
branches:
only:
- "build/master"
- "releases"

11 changes: 6 additions & 5 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,33 @@ use Module::Build 0.3601;

my %module_build_args = (
"build_requires" => {
"Module::Build" => "0.4004"
"Module::Build" => "0.4007"
},
"configure_requires" => {
"Module::Build" => "0.4004"
"Module::Build" => "0.4007"
},
"dist_abstract" => "A minimal boot-strapping for Dist::Zilla Plug-ins.",
"dist_author" => [
"Kent Fredric <kentnl\@cpan.org>"
],
"dist_name" => "Dist-Zilla-Plugin-Bootstrap-lib",
"dist_version" => "0.02000100",
"dist_version" => "0.03000000",
"license" => "perl",
"module_name" => "Dist::Zilla::Plugin::Bootstrap::lib",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
"Cwd" => 0,
"Path::Tiny" => 0,
"lib" => 0,
"perl" => "5.006",
"strict" => 0,
"warnings" => 0
},
"script_files" => [],
"test_requires" => {
"File::Find" => 0,
"File::Temp" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::More" => "0.98"
}
);
Expand Down
56 changes: 46 additions & 10 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,27 +1,63 @@
Revision history for Dist-Zilla-Plugin-Bootstrap-lib

0.03000000 2013-08-30T23:46:07Z
[!Major]
- Less noisy in general usage.
- Now warns if paths that would be boostraped contain modules that are
already loaded in %INC ( closes gh #1 )
- Tests regenerated with newer tools

[Dependencies::Added / develop requires]
- Test::CPAN::Changes 0.19
- Test::Kwalitee 1.08

[Dependencies::Added / runtime requires]
- lib

[Dependencies::Added / test requires]
- IO::Handle
- IPC::Open3

[Dependencies::Changed / build requires]
- Module::Build 0.4004 → 0.4007

[Dependencies::Changed / configure requires]
- Module::Build 0.4004 → 0.4007

[Dependencies::Changed / develop suggests]
- Dist::Zilla::PluginBundle::Author::KENTNL v1.7.2 → v1.8.3

[Dependencies::Removed / test requires]
- File::Find
- File::Temp

0.02000100 2013-04-06T09:53:45Z
[Bugs]
- 2 fallback conditions were accidentally using the same logic, so only one would ever work.
- satisfactory build dirs accidentally lacked a 'lib' suffix, so resulted in a "fallthrough" to system.
- 2 fallback conditions were accidentally using the same logic, so only
one would ever work.
- satisfactory build dirs accidentally lacked a 'lib' suffix, so resulted
in a "fallthrough" to system.

0.02000000 2013-04-06T09:38:52Z
[!Noteworthy Changes]
- @INC mutation now done slightly later at C<register_component>, which lets us get payload parameters out,
while still executing the real work long before anything else. Though execution order still matters profusely.
- @INC mutation now done slightly later at C<register_component>, which
lets us get payload parameters out, while still executing the real work
long before anything else. Though execution order still matters
profusely.
- 3 new parameters,
- `try_built` tries to use a previous build instead of a "undef version" based bootstrap
- `fallback = 1` enables `try_built` to fall back to the `bootstrap lib` form ( this is the default )
- `try_built` tries to use a previous build instead of a "undef version"
based bootstrap
- `fallback = 1` enables `try_built` to fall back to the `bootstrap lib`
form ( this is the default )
- `no_fallback = 1` disables `fallback`

[Dependencies::Removed / runtime requires]
- File::Spec
- Carp

[Dependencies::Added / runtime requires]
- Path::Tiny
- Cwd

[Dependencies::Removed / runtime requires]
- File::Spec
- Carp

0.01023602 2013-04-06T08:37:50Z
- Maintenance Release
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.perltidyrc
.travis.yml
Build.PL
Changes
LICENSE
Expand Down
Loading

0 comments on commit fbfdc21

Please sign in to comment.