From: Lukas Mai Date: Sun, 16 Jun 2013 18:08:16 +0000 (+0200) Subject: version 1.0104 X-Git-Tag: v1.0104 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FFunction-Parameters.git;a=commitdiff_plain;h=d72d56ce74efe8558da8154d85aea834ff87dfc6 version 1.0104 --- diff --git a/Changes b/Changes index 3f5772a..bb34ece 100644 --- 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) diff --git a/lib/Function/Parameters.pm b/lib/Function/Parameters.pm index d7cc7af..101a34f 100644 --- a/lib/Function/Parameters.pm +++ b/lib/Function/Parameters.pm @@ -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; } diff --git a/lib/Function/Parameters/Info.pm b/lib/Function/Parameters/Info.pm index ebbb7b3..ffec607 100644 --- a/lib/Function/Parameters/Info.pm +++ b/lib/Function/Parameters/Info.pm @@ -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;