bring back 5.8 compatibility
Karen Etheridge [Fri, 15 Feb 2013 21:10:32 +0000 (13:10 -0800)]
Changes
t/008_configfromfile.t
t/112_configfile_constructor_arg.t

diff --git a/Changes b/Changes
index 7cf3ed0..9e906b7 100644 (file)
--- 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
index ed742e2..e22f206 100644 (file)
@@ -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';
 
index cc441f3..8a30858 100644 (file)
@@ -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