From: Stevan Little Date: Thu, 29 May 2008 12:52:28 +0000 (+0000) Subject: 0.48 X-Git-Tag: 0_55~129 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=695d1c68199f073bfe3cd07e64c27b3904efe258;p=gitmo%2FMoose.git 0.48 --- diff --git a/Changes b/Changes index 937d7f3..a1cc1dc 100644 --- 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 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Moose version 0.47 +Moose version 0.48 =========================== See the individual module documentation for more information diff --git a/lib/Moose.pm b/lib/Moose.pm index eac12bb..f90c67c 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -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'; diff --git a/lib/Moose/Meta/Method/Destructor.pm b/lib/Moose/Meta/Method/Destructor.pm index e85070d..1629e94 100644 --- a/lib/Moose/Meta/Method/Destructor.pm +++ b/lib/Moose/Meta/Method/Destructor.pm @@ -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',