From: Karen Etheridge Date: Sun, 3 Feb 2013 02:58:49 +0000 (-0800) Subject: release commit for 0.06 X-Git-Tag: 0.06^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-ConfigFromFile.git;a=commitdiff_plain;h=75faf71e9f906a22899b2728fee90d3906b1c0f6 release commit for 0.06 --- diff --git a/ChangeLog b/ChangeLog index 75a5874..eee03ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ Revision history for Perl extension MooseX::ConfigFromFile +0.06 2013-02-03 (Karen Etheridge) - the configfile attribute is now a Path::Tiny, not a Path::Class (coercions from strings are still supported, and now also from any other type that has a string coercion). diff --git a/lib/MooseX/ConfigFromFile.pm b/lib/MooseX/ConfigFromFile.pm index 15d6773..4316863 100644 --- a/lib/MooseX/ConfigFromFile.pm +++ b/lib/MooseX/ConfigFromFile.pm @@ -6,7 +6,7 @@ use Try::Tiny qw/ try /; use Carp qw(croak); use namespace::autoclean; -our $VERSION = '0.05'; +our $VERSION = '0.06'; requires 'get_config_from_file';