From: Florian Ragwitz Date: Sat, 26 Feb 2011 06:04:29 +0000 (+0100) Subject: Version 0.006001 X-Git-Tag: 0.006001^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=82ffef055a3f0bc9c2b7bea538dc86d38033a21b;p=p5sagit%2FDevel-Declare.git Version 0.006001 --- diff --git a/Changes b/Changes index baa2e50..277bf1a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Changes for Devel-Declare +0.006001 - 26 Feb 2011 + - Support perl >= 5.13.7 by re-allocating PL_linestr in block hooks (Zefram). + 0.006000 - 09 Mar 2010 - Make things work on perl 5.11.2 and newer (Zefram). diff --git a/lib/Devel/Declare.pm b/lib/Devel/Declare.pm index 1fa288b..8f16a89 100644 --- a/lib/Devel/Declare.pm +++ b/lib/Devel/Declare.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.008001; -our $VERSION = '0.006000'; +our $VERSION = '0.006001'; use constant DECLARE_NAME => 1; use constant DECLARE_PROTO => 2; diff --git a/lib/Devel/Declare/MethodInstaller/Simple.pm b/lib/Devel/Declare/MethodInstaller/Simple.pm index 911fa53..714229b 100644 --- a/lib/Devel/Declare/MethodInstaller/Simple.pm +++ b/lib/Devel/Declare/MethodInstaller/Simple.pm @@ -7,7 +7,7 @@ use Sub::Name; use strict; use warnings; -our $VERSION = '0.006000'; +our $VERSION = '0.006001'; sub install_methodhandler { my $class = shift;