From: Florian Ragwitz Date: Mon, 10 Nov 2008 01:27:55 +0000 (+0000) Subject: Version 0.003004. X-Git-Tag: 0.005000~28 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2c746743b2eec21048ea3a04f88b3d8eaf79d1db;p=p5sagit%2FDevel-Declare.git Version 0.003004. --- diff --git a/Changes b/Changes index a2262cb..68513b1 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Changes for Devel-Declare +0.003004 + - Make magic work within string evals on 5.10 if the hints hash is used. + - Bind S_scan_ident to perl. It allows scanning for simple identifiers. + - Add strip_ident to Context::Simple. + 0.003003 - Devel::Declare::MethodInstaller::Simple now has code_for() which the subclass can override to monkey with the magic shadowed subroutine. diff --git a/lib/Devel/Declare.pm b/lib/Devel/Declare.pm index 759bed7..e743b7b 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.003003'; +our $VERSION = '0.003004'; 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 7cbe95b..319775b 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.003003'; +our $VERSION = '0.003004'; sub install_methodhandler { my $class = shift;