From: Stevan Little Date: Tue, 17 Jul 2007 02:46:58 +0000 (+0000) Subject: 0.42 X-Git-Tag: 0_44~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9195ddff0447e2e618ab3b227aeb3574f6c8cb17;hp=92af7fdfbd3e03c2cbef0bf0513430b53e2c4960;p=gitmo%2FClass-MOP.git 0.42 --- diff --git a/Changes b/Changes index 36b672f..8730fad 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,13 @@ Revision history for Perl extension Class-MOP. +0.42 + !!! Horray for mst, he fixed it !!! + * Class::MOP::Package - alter symbol table handling to deal with 5.8.x and 5.9.x + * t/ - Get rid of the crappy workaround from 0.40/41 + - Get rid of the crappy workaround from 0.40/41 0.41 Sun. July 15, 2007 * t/ diff --git a/README b/README index fcd4431..429861f 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Class::MOP version 0.41 +Class::MOP version 0.42 =========================== See the individual module documentation for more information diff --git a/lib/Class/MOP.pm b/lib/Class/MOP.pm index bc82096..dcd0b8b 100644 --- a/lib/Class/MOP.pm +++ b/lib/Class/MOP.pm @@ -13,7 +13,7 @@ use Class::MOP::Method; use Class::MOP::Immutable; -our $VERSION = '0.41'; +our $VERSION = '0.42'; our $AUTHORITY = 'cpan:STEVAN'; { @@ -855,6 +855,8 @@ Brandon (blblack) Black Guillermo (groditi) Roditi +Matt (mst) Trout + Rob (robkinyon) Kinyon Yuval (nothingmuch) Kogman diff --git a/lib/Class/MOP/Package.pm b/lib/Class/MOP/Package.pm index a95d29b..3020727 100644 --- a/lib/Class/MOP/Package.pm +++ b/lib/Class/MOP/Package.pm @@ -7,7 +7,7 @@ use warnings; use Scalar::Util 'blessed'; use Carp 'confess'; -our $VERSION = '0.06'; +our $VERSION = '0.07'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Class::MOP::Object';