From: Karen Etheridge Date: Fri, 15 Feb 2013 21:10:32 +0000 (-0800) Subject: bring back 5.8 compatibility X-Git-Tag: v0.56~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=commitdiff_plain;h=a45763205b528fd343a5e4882001f7253153a47a;hp=9bcb580d6faef385befee844bdfc2a0bd2d337f8 bring back 5.8 compatibility --- diff --git a/Changes b/Changes index 7cf3ed0..9e906b7 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Perl extension MooseX-Getopt {{$NEXT}} + - depend on newest Path::Tiny, to regain 5.8.x compatibility (gone since + v0.52) 0.55 2013-02-12 10:02:55 PST-0800 - fix broken tests on win32 with file comparisons diff --git a/t/008_configfromfile.t b/t/008_configfromfile.t index ed742e2..e22f206 100644 --- a/t/008_configfromfile.t +++ b/t/008_configfromfile.t @@ -5,7 +5,7 @@ use Test::Requires 'MooseX::ConfigFromFile'; # skip all if not installed use Test::More tests => 56; use Test::Fatal; use Test::Deep '!blessed'; -use Path::Tiny; +use Path::Tiny 0.009; use Scalar::Util 'blessed'; use Test::NoWarnings 1.04 ':early'; diff --git a/t/112_configfile_constructor_arg.t b/t/112_configfile_constructor_arg.t index cc441f3..8a30858 100644 --- a/t/112_configfile_constructor_arg.t +++ b/t/112_configfile_constructor_arg.t @@ -6,7 +6,7 @@ use warnings FATAL => 'all'; use Test::Requires 'MooseX::SimpleConfig'; # skip all if not installed use Test::More tests => 3; use Test::NoWarnings 1.04 ':early'; -use Path::Tiny; +use Path::Tiny 0.009; # avoid warning if all we have installed is YAML or YAML::Syck - the user will # see this eventually when he actually uses MooseX::SimpleConfig in his own