From: Lukas Mai Date: Fri, 8 Mar 2013 04:03:12 +0000 (+0100) Subject: version bump X-Git-Tag: v1.0102 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FFunction-Parameters.git;a=commitdiff_plain;h=7b24d840a52e7ef6612e72d5779206b99428a0b3 version bump --- diff --git a/Changes b/Changes index 9acc3e9..c812f27 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Function-Parameters +1.0102 2013-03-08 + - prepare for internals changes in the upcoming 5.18 release + (https://rt.cpan.org/Ticket/Display.html?id=83439) + - only allocate memory after recognizing a keyword like 'fun' + (might speed up parsing a little) + 1.0101 2013-02-05 - new reflection API to inspect parameter information of functions - Moose types in parameter lists diff --git a/lib/Function/Parameters.pm b/lib/Function/Parameters.pm index 27c018e..8dcfef8 100644 --- a/lib/Function/Parameters.pm +++ b/lib/Function/Parameters.pm @@ -8,9 +8,7 @@ use Carp qw(confess); use XSLoader; BEGIN { - our $VERSION = '1.0101_01'; - our $XS_VERSION = $VERSION; - $VERSION = eval $VERSION; + our $VERSION = '1.0102'; XSLoader::load; }