Skip to content

Commit

Permalink
Build results of b7fcc23 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Feb 28, 2015
1 parent b20d00e commit 52706e4
Show file tree
Hide file tree
Showing 13 changed files with 120 additions and 38 deletions.
35 changes: 18 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,37 +20,38 @@ install:
language: perl
matrix:
allow_failures:
- perl: 5.8
- perl: '5.8'
- env: STERILIZE_ENV=0 RELEASE_TESTING=1 AUTHOR_TESTING=1
- env: STERILIZE_ENV=0 DEVELOPER_DEPS=1
include:
- env: STERILIZE_ENV=0 COVERAGE_TESTING=1
perl: '5.21'
- env: STERILIZE_ENV=1
perl: '5.21'
- env: STERILIZE_ENV=0
perl: 5.8
perl: '5.8'
- env: STERILIZE_ENV=0
perl: 5.10
perl: '5.10'
- env: STERILIZE_ENV=0
perl: 5.12
perl: '5.12'
- env: STERILIZE_ENV=0
perl: 5.14
perl: '5.14'
- env: STERILIZE_ENV=0
perl: 5.16
perl: '5.16'
- env: STERILIZE_ENV=0
perl: 5.20
perl: '5.20'
- env: STERILIZE_ENV=0
perl: 5.21
perl: '5.21'
- env: STERILIZE_ENV=1
perl: 5.8
perl: '5.8'
- env: STERILIZE_ENV=1
perl: 5.10
perl: '5.10'
- env: STERILIZE_ENV=1
perl: 5.20
- env: STERILIZE_ENV=1
perl: 5.21
perl: '5.20'
- env: STERILIZE_ENV=0 DEVELOPER_DEPS=1
perl: 5.21
perl: '5.21'
- env: STERILIZE_ENV=0 RELEASE_TESTING=1 AUTHOR_TESTING=1
perl: 5.21
- env: STERILIZE_ENV=0 COVERAGE_TESTING=1
perl: 5.21
perl: '5.21'
script:
- time perl ./maint-travis-ci/script.pl
sudo: false
8 changes: 7 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Release history for Dist-Zilla-Plugin-Prereqs-Soften

0.005002 2014-09-29T14:04:14Z 64b94fc
0.005002 2015-02-28T04:51:06Z b7fcc23
[Dependencies::Stats]
- Dependencies changed since 0.005001, see misc/*.deps* for details
- configure: +1 (recommends: ↑1)
- develop: +10 ↑2 -2 (recommends: +1, suggests: ↑2)
- runtime: (recommends: +1)
- test: +1 (recommends: ↑1 ↓1)

0.005001 2014-09-29T14:03:18Z
[Bugfix]
Expand Down
8 changes: 3 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"requires" : {
"ExtUtils::MakeMaker" : "0",
"perl" : "5.008"
"perl" : "5.006"
}
},
"develop" : {
Expand Down Expand Up @@ -88,7 +88,6 @@
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08",
"strict" : "0",
"utf8" : "0",
"warnings" : "0"
},
"suggests" : {
Expand All @@ -100,7 +99,6 @@
"recommends" : {
"Moose" : "2.000",
"strict" : "0",
"utf8" : "0",
"warnings" : "0"
},
"requires" : {
Expand All @@ -109,7 +107,7 @@
"Moose" : "0",
"Moose::Util::TypeConstraints" : "0",
"MooseX::Types::Moose" : "0",
"perl" : "5.008"
"perl" : "5.006"
}
},
"test" : {
Expand All @@ -127,7 +125,7 @@
"Test::DZil" : "0",
"Test::More" : "0.89",
"Test::Requires" : "0",
"perl" : "5.008"
"perl" : "5.006"
}
}
},
Expand Down
7 changes: 3 additions & 4 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ build_requires:
Test::DZil: '0'
Test::More: '0.89'
Test::Requires: '0'
perl: '5.008'
perl: '5.006'
configure_requires:
ExtUtils::MakeMaker: '0'
perl: '5.008'
perl: '5.006'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.032, CPAN::Meta::Converter version 2.143240'
license: perl
Expand All @@ -27,15 +27,14 @@ provides:
recommends:
Moose: '2.000'
strict: '0'
utf8: '0'
warnings: '0'
requires:
Dist::Zilla::Role::PrereqSource: '0'
Dist::Zilla::Util::ConfigDumper: '0'
Moose: '0'
Moose::Util::TypeConstraints: '0'
MooseX::Types::Moose: '0'
perl: '5.008'
perl: '5.006'
resources:
bugtracker: https://github.com/kentnl/Dist-Zilla-Plugin-Prereqs-Soften/issues
homepage: https://github.com/kentnl/Dist-Zilla-Plugin-Prereqs-Soften
Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use strict;
use warnings;

use 5.008;
use 5.006;

use ExtUtils::MakeMaker;

Expand All @@ -15,7 +15,7 @@ my %WriteMakefileArgs = (
"DISTNAME" => "Dist-Zilla-Plugin-Prereqs-Soften",
"EXE_FILES" => [],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.008",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "Dist::Zilla::Plugin::Prereqs::Soften",
"PREREQ_PM" => {
"Dist::Zilla::Role::PrereqSource" => 0,
Expand Down
3 changes: 1 addition & 2 deletions lib/Dist/Zilla/Plugin/Prereqs/Soften.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use 5.008; # utf-8
use 5.006;
use strict;
use warnings;
use utf8;

package Dist::Zilla::Plugin::Prereqs::Soften;

Expand Down
5 changes: 5 additions & 0 deletions misc/Changes.deps
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)

0.005002
[Added / configure requires]
- perl 5.008

[Added / test requires]
- perl 5.008

0.005001 2014-09-29T14:03:18Z

Expand Down
42 changes: 42 additions & 0 deletions misc/Changes.deps.all
Original file line number Diff line number Diff line change
@@ -1,6 +1,48 @@
This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL dependencies for all phases (configure/build/runtime/test/develop)

0.005002
[Added / configure requires]
- perl 5.008

[Added / develop recommends]
- Test::More 0.99

[Added / develop requires]
- Dist::Zilla 5
- Dist::Zilla::Plugin::Author::KENTNL::TravisCI
- Dist::Zilla::Plugin::Bootstrap::lib
- Dist::Zilla::Plugin::Prereqs::AuthorDeps
- Dist::Zilla::Plugin::Prereqs::Soften
- Dist::Zilla::Plugin::Prereqs::Upgrade
- Dist::Zilla::Plugin::Readme::Brief
- Dist::Zilla::Plugin::Test::EOL
- Test::EOL
- Test::More 0.88

[Added / runtime recommends]
- Moose 2.000

[Added / test requires]
- perl 5.008

[Changed / configure recommends]
- ExtUtils::MakeMaker 6.98 → 7.00

[Changed / develop requires]
- Dist::Zilla::Plugin::Git::NextRelease 0 → 0.004000
- Dist::Zilla::Plugin::MetaData::BuiltWith 0 → 1.004000

[Changed / develop suggests]
- Dist::Zilla::App::Command::bakeini 0.001002 → 0.002000
- Dist::Zilla::PluginBundle::Author::KENTNL 2.020003 → 2.023003

[Changed / test recommends]
- ExtUtils::MakeMaker 6.98 → 7.00
- Test::More 1.001006 → 0.99

[Removed / develop requires]
- Dist::Zilla::Plugin::EOLTests
- Dist::Zilla::Plugin::ReadmeFromPod

0.005001 2014-09-29T14:03:18Z
[Added / test recommends]
Expand Down
26 changes: 26 additions & 0 deletions misc/Changes.deps.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
This file contains changes to DEVELOPMENT dependencies only ( both REQUIRED and OPTIONAL )

0.005002
[Added / develop recommends]
- Test::More 0.99

[Added / develop requires]
- Dist::Zilla 5
- Dist::Zilla::Plugin::Author::KENTNL::TravisCI
- Dist::Zilla::Plugin::Bootstrap::lib
- Dist::Zilla::Plugin::Prereqs::AuthorDeps
- Dist::Zilla::Plugin::Prereqs::Soften
- Dist::Zilla::Plugin::Prereqs::Upgrade
- Dist::Zilla::Plugin::Readme::Brief
- Dist::Zilla::Plugin::Test::EOL
- Test::EOL
- Test::More 0.88

[Changed / develop requires]
- Dist::Zilla::Plugin::Git::NextRelease 0 → 0.004000
- Dist::Zilla::Plugin::MetaData::BuiltWith 0 → 1.004000

[Changed / develop suggests]
- Dist::Zilla::App::Command::bakeini 0.001002 → 0.002000
- Dist::Zilla::PluginBundle::Author::KENTNL 2.020003 → 2.023003

[Removed / develop requires]
- Dist::Zilla::Plugin::EOLTests
- Dist::Zilla::Plugin::ReadmeFromPod

0.005001 2014-09-29T14:03:18Z
[Changed / develop suggests]
Expand Down
9 changes: 9 additions & 0 deletions misc/Changes.deps.opt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
This file contains changes in OPTIONAL dependencies for standard CPAN phases (configure/build/runtime/test)

0.005002
[Added / runtime recommends]
- Moose 2.000

[Changed / configure recommends]
- ExtUtils::MakeMaker 6.98 → 7.00

[Changed / test recommends]
- ExtUtils::MakeMaker 6.98 → 7.00
- Test::More 1.001006 → 0.99

0.005001 2014-09-29T14:03:18Z
[Added / test recommends]
Expand Down
1 change: 0 additions & 1 deletion misc/built_with.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
"Test::Pod::Coverage" : "1.10",
"Test::Requires" : "0.08",
"strict" : "1.09",
"utf8" : "1.14",
"warnings" : "1.31"
},
"perl" : {
Expand Down
2 changes: 1 addition & 1 deletion perlcritic.rc
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ allow_includes = 1

[CodeLayout::RequireTrailingCommas]

[CodeLayout::RequireUseUTF8]
[-CodeLayout::RequireUseUTF8]

[Compatibility::ConstantLeadingUnderscore]

Expand Down
8 changes: 3 additions & 5 deletions t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ do { my $x = {
},
'requires' => {
'ExtUtils::MakeMaker' => '0',
'perl' => '5.008'
'perl' => '5.006'
}
},
'develop' => {
Expand Down Expand Up @@ -73,7 +73,6 @@ do { my $x = {
'Test::Pod' => '1.41',
'Test::Pod::Coverage' => '1.08',
'strict' => '0',
'utf8' => '0',
'warnings' => '0'
},
'suggests' => {
Expand All @@ -85,7 +84,6 @@ do { my $x = {
'recommends' => {
'Moose' => '2.000',
'strict' => '0',
'utf8' => '0',
'warnings' => '0'
},
'requires' => {
Expand All @@ -94,7 +92,7 @@ do { my $x = {
'Moose' => '0',
'Moose::Util::TypeConstraints' => '0',
'MooseX::Types::Moose' => '0',
'perl' => '5.008'
'perl' => '5.006'
}
},
'test' => {
Expand All @@ -112,7 +110,7 @@ do { my $x = {
'Test::DZil' => '0',
'Test::More' => '0.89',
'Test::Requires' => '0',
'perl' => '5.008'
'perl' => '5.006'
}
}
};
Expand Down

0 comments on commit 52706e4

Please sign in to comment.