Skip to content

Commit

Permalink
release v1.015
Browse files Browse the repository at this point in the history
 - remove Build.PL
 - Add META.json to the built dist
 - Avoid using YAML::XS 0.61 where possible
 - fix minimum test prereqs
 - update travis config to test core, hide modules
  • Loading branch information
preaction committed Feb 23, 2016
1 parent 7c26850 commit 2ff7204
Show file tree
Hide file tree
Showing 5 changed files with 560 additions and 534 deletions.
9 changes: 8 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog for Beam-Wire

1.014 2015-11-02T21:22:53
1.015 2016-02-23T14:33:00
- remove Build.PL
- Add META.json to the built dist
- Avoid using YAML::XS 0.61 where possible
- fix minimum test prereqs
- update travis config to test core, hide modules

1.014 2015-11-02T21:22:53Z
- allow empty hashref in service args
- add exception class for config errors
- upgrade perl in travis config
Expand Down
12 changes: 7 additions & 5 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ my %WriteMakefileArgs = (
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::Deep" => 0,
"Test::Differences" => 0,
"Test::Differences" => "0.64",
"Test::Exception" => 0,
"Test::Lib" => 0,
"Test::More" => 0
"Test::More" => "1.001005"
},
"VERSION" => "1.014",
"VERSION" => "1.015",
"test" => {
"TESTS" => "t/*.t t/container/*.t t/dependency/*.t t/deprecated/*.t t/service/*.t"
}
Expand All @@ -49,20 +49,22 @@ my %WriteMakefileArgs = (

my %FallbackPrereqs = (
"Beam::Emitter" => 0,
"CPAN::Meta::Requirements" => "2.120620",
"Config::Any" => "0.23",
"Data::DPath" => "0.51",
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Module::Metadata" => 0,
"Module::Runtime" => 0,
"Moo" => 0,
"Path::Tiny" => "0.055",
"Test::Deep" => 0,
"Test::Differences" => 0,
"Test::Differences" => "0.64",
"Test::Exception" => 0,
"Test::Lib" => 0,
"Test::More" => 0,
"Test::More" => "1.001005",
"Throwable" => 0,
"Types::Standard" => 0,
"YAML" => 0
Expand Down
Loading

0 comments on commit 2ff7204

Please sign in to comment.