version 1.0202 v1.0202
Lukas Mai [Wed, 28 Aug 2013 18:29:30 +0000 (20:29 +0200)]
Changes
lib/Function/Parameters.pm
lib/Function/Parameters/Info.pm

diff --git a/Changes b/Changes
index 56ffb5e..05ef48b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Function-Parameters
 
+1.0202  2013-08-28
+        - make t/foreign/Fun/name.t less fragile to support newer Carp
+        - support older Moo without ->meta support
+
 1.0201  2013-08-13
         - custom (per-keyword) type reification
         - actually use documented defaults for custom keywords
index 0f89fc2..51679df 100644 (file)
@@ -7,7 +7,7 @@ use Carp qw(confess);
 
 use XSLoader;
 BEGIN {
-       our $VERSION = '1.0201';
+       our $VERSION = '1.0202';
        XSLoader::load;
 }
 
index 6c624ff..224269c 100644 (file)
@@ -3,7 +3,7 @@ package Function::Parameters::Info;
 use v5.14.0;
 use warnings;
 
-our $VERSION = '0.04';
+our $VERSION = '1.0202';
 
 # If Moo isn't loaded yet but Moose is, avoid pulling in Moo and fall back to Moose
 my ($Moo, $meta_make_immutable);