From: Lukas Mai Date: Sun, 24 Jun 2012 12:27:47 +0000 (+0200) Subject: update Changes X-Git-Tag: v0.06_01 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FFunction-Parameters.git;a=commitdiff_plain;h=d45c903707440a36cf675b20f5469dbed18d0b01 update Changes --- diff --git a/Changes b/Changes index f1a9ea8..0d40f36 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for Function-Parameters +0.06_01 2012-06-24 + - completely rework internals to generate optrees directly + - no more reparsing source + - simplify / fewer dependencies + - new feature: default arguments (on by default) + - new feature: strict argument count checks (off by default) + enabled by "*_strict" variants of symbolic types + 0.06 2012-06-19 - complete rewrite in XS - require perl 5.14+ diff --git a/lib/Function/Parameters.pm b/lib/Function/Parameters.pm index ca7acc0..bce63ad 100644 --- a/lib/Function/Parameters.pm +++ b/lib/Function/Parameters.pm @@ -9,7 +9,7 @@ use Carp qw(confess); use XSLoader; BEGIN { - our $VERSION = '0.06'; + our $VERSION = '0.06_01'; XSLoader::load; }