From: Tomas Doran Date: Mon, 12 Apr 2010 20:16:06 +0000 (+0100) Subject: Merge branch 'master' of git.moose.perl.org:MooseX-SimpleConfig X-Git-Tag: 0.07~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c820699b0acc45a3c14c865989f1d502602e456d;hp=c36a5f381f55b817659e61bd3c6513f05eb0b949;p=gitmo%2FMooseX-SimpleConfig.git Merge branch 'master' of git.moose.perl.org:MooseX-SimpleConfig * 'master' of git.moose.perl.org:MooseX-SimpleConfig: fixed configfile attribute examples added metadata to Makefile.PL --- diff --git a/ChangeLog b/ChangeLog index 224e522..7d3be0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ Revision history for Perl extension MooseX::SimpleConfig +0.06 - Apr 12, 2010 + - Depend on at least version 0.19 of Config::Any for flatten_to_hash + support. + 0.05 - Jan 22, 2010 - Allow multiple config files to be loaded and merged. Patch in RT#48552 from Sawyer X diff --git a/Makefile.PL b/Makefile.PL index bc740f5..7f1e543 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,7 +8,7 @@ test_requires 'Test::More' => '0.42'; requires 'Moose' => '0.35'; requires 'MooseX::ConfigFromFile' => '0.02'; -requires 'Config::Any' => '0.10'; +requires 'Config::Any' => '0.13'; # Rebuild README for maintainers system("pod2text lib/MooseX/SimpleConfig.pm >README") and die diff --git a/lib/MooseX/SimpleConfig.pm b/lib/MooseX/SimpleConfig.pm index 879e0b8..1a7add5 100644 --- a/lib/MooseX/SimpleConfig.pm +++ b/lib/MooseX/SimpleConfig.pm @@ -3,7 +3,7 @@ package MooseX::SimpleConfig; use Moose::Role; with 'MooseX::ConfigFromFile'; -our $VERSION = '0.05'; +our $VERSION = '0.06'; use Config::Any ();