Version 0.003004.
Florian Ragwitz [Mon, 10 Nov 2008 01:27:55 +0000 (01:27 +0000)]
Changes
lib/Devel/Declare.pm
lib/Devel/Declare/MethodInstaller/Simple.pm

diff --git a/Changes b/Changes
index a2262cb..68513b1 100644 (file)
--- 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.
index 759bed7..e743b7b 100644 (file)
@@ -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;
index 7cbe95b..319775b 100644 (file)
@@ -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;