version bump v1.0102
Lukas Mai [Fri, 8 Mar 2013 04:03:12 +0000 (05:03 +0100)]
Changes
lib/Function/Parameters.pm

diff --git a/Changes b/Changes
index 9acc3e9..c812f27 100644 (file)
--- 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
index 27c018e..8dcfef8 100644 (file)
@@ -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;
 }