Release 0.10000 v0.10000
Peter Rabbitson [Sat, 27 Nov 2010 17:54:08 +0000 (17:54 +0000)]
Changes
lib/Class/Accessor/Grouped.pm

diff --git a/Changes b/Changes
index d777353..37014ce 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,10 @@
 Revision history for Class::Accessor::Grouped.
 
+
+0.10000 Sat Nov 27 17:51:04 2010
     - Fix perl 5.6 failures
     - Add test-time deferred coderef reinvocation checks
+    - Another minor (8%) speedup
 
 0.09009 Fri Nov 26 01:31:56 2010
     - Major cleanup and optimization of code (evaled coderef sharing)
index ae3a5f6..fa83694 100644 (file)
@@ -5,8 +5,8 @@ use Carp ();
 use Scalar::Util ();
 use MRO::Compat;
 
-our $VERSION = '0.09009';
-$VERSION = eval $VERSION;
+our $VERSION = '0.10000';
+$VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
 
 # when changing minimum version don't forget to adjust L</PERFORMANCE> and
 # the Makefile.PL as well