version 1.0104 v1.0104
Lukas Mai [Sun, 16 Jun 2013 18:08:16 +0000 (20:08 +0200)]
Changes
lib/Function/Parameters.pm
lib/Function/Parameters/Info.pm

diff --git a/Changes b/Changes
index 3f5772a..bb34ece 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Function-Parameters
 
+1.0104  2013-06-16
+        - support unicode in custom keywords
+        - actually validate default attributes
+
 1.0103  2013-06-09
         - properly allow non-moose-based custom type constraints (#85851)
 
index d7cc7af..101a34f 100644 (file)
@@ -7,9 +7,7 @@ use Carp qw(confess);
 
 use XSLoader;
 BEGIN {
-       our $VERSION = '1.0103_01';
-       our $XS_VERSION = $VERSION;
-       $VERSION = eval $VERSION;
+       our $VERSION = '1.0104';
        XSLoader::load;
 }
 
index ebbb7b3..ffec607 100644 (file)
@@ -3,7 +3,7 @@ package Function::Parameters::Info;
 use v5.14.0;
 use warnings;
 
-our $VERSION = '0.03';
+our $VERSION = '0.04';
 
 # If Moo isn't loaded yet but Moose is, avoid pulling in Moo and fall back to Moose
 my $Moo;