0.48
Stevan Little [Thu, 29 May 2008 12:52:28 +0000 (12:52 +0000)]
Changes
README
lib/Moose.pm
lib/Moose/Meta/Method/Destructor.pm

diff --git a/Changes b/Changes
index 937d7f3..a1cc1dc 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Moose
 
+0.48 Thurs. May 29, 2008
+    (early morning release engineering)--
+
+    - fixing the version in Moose::Meta::Method::Destructor
+      which was causing the indexer to choke
+
 0.47 Thurs. May 29, 2008
     (late night release engineering)--
 
diff --git a/README b/README
index 91a188f..8d43d52 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Moose version 0.47
+Moose version 0.48
 ===========================
 
 See the individual module documentation for more information
index eac12bb..f90c67c 100644 (file)
@@ -4,7 +4,7 @@ package Moose;
 use strict;
 use warnings;
 
-our $VERSION   = '0.47';
+our $VERSION   = '0.48';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use Scalar::Util 'blessed', 'reftype';
index e85070d..1629e94 100644 (file)
@@ -7,7 +7,7 @@ use warnings;
 use Carp         'confess';
 use Scalar::Util 'blessed', 'weaken';
 
-our $VERSION   = '0.02';
+our $VERSION   = '0.04';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Moose::Meta::Method',