From: Karen Etheridge Date: Sun, 3 Feb 2013 02:14:06 +0000 (-0800) Subject: changelog for release X-Git-Tag: 0.05~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-ConfigFromFile.git;a=commitdiff_plain;h=79d1178e5314e72793610c7669b4ea1757045c2b changelog for release --- diff --git a/ChangeLog b/ChangeLog index 2f52e4e..003ee5e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,11 @@ Revision history for Perl extension MooseX::ConfigFromFile -0.05 +0.05 - 2013-02-03 (Karen Etheridge) - documentation corrected to demostrate how to properly override the configfile method to provide a default from the consuming class, without having to redefine the attribute itself - if MooseX::Getopt is installed, the configfile attribute has the Getopt - trait applied (Karen Etheridge) + trait applied 0.04 - Dec 17, 2011 - Call the configfile attribute default sub if it is a sub, not just a diff --git a/lib/MooseX/ConfigFromFile.pm b/lib/MooseX/ConfigFromFile.pm index a298dcf..0f4ecc1 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.04'; +our $VERSION = '0.05'; requires 'get_config_from_file';