From: Lukas Mai Date: Mon, 19 Nov 2012 19:18:32 +0000 (+0100) Subject: version bump X-Git-Tag: v1.0003 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FFunction-Parameters.git;a=commitdiff_plain;h=096dbcecd7c2a600af8aa92c236dbc96b59373ca version bump --- diff --git a/Changes b/Changes index 3b062d7..ab7cda0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Function-Parameters +1.0003 2012-11-19 + - clean up internals + - fix build errors on some platforms + - fix module metadata + - some more tests + 1.00 2012-11-01 - add named parameters with ':$foo, :$bar' syntax - rewrite documentation diff --git a/lib/Function/Parameters.pm b/lib/Function/Parameters.pm index 69078dc..4bcec7e 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.00_01'; - our $XS_VERSION = $VERSION; - $VERSION = eval $VERSION; + our $VERSION = '1.0003'; XSLoader::load; }