From: Stevan Little Date: Fri, 21 Dec 2007 18:59:08 +0000 (+0000) Subject: some tweaks for release X-Git-Tag: 0_51~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6ff0d647e421883334a27b1ce5c59bcb00bbda43;p=gitmo%2FClass-MOP.git some tweaks for release --- diff --git a/Changes b/Changes index 59dd764..dc3d2c7 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,19 @@ Revision history for Perl extension Class-MOP. +0.50 + * Class::MOP::Class + - fixed bug in immutable to make sure that + transformation arguments are saved + correctly (mst) + + * Class::MOP::Immutable + - fixed a bug (see above) + + * Class::MOP::Attribute + - some doc updates + 0.49 Fri. Dec. 14, 2007 - !! Class::MOP now loads ~45% faster !! + !! Class::MOP now loads ~70% faster !! !! with XS speedups (thanks konobi) !! * Class::MOP diff --git a/README b/README index d796e1b..1ef6ed5 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Class::MOP version 0.49 +Class::MOP version 0.50 =========================== See the individual module documentation for more information diff --git a/lib/Class/MOP.pm b/lib/Class/MOP.pm index c789d06..9d0c16e 100644 --- a/lib/Class/MOP.pm +++ b/lib/Class/MOP.pm @@ -14,7 +14,7 @@ use Class::MOP::Method; use Class::MOP::Immutable; BEGIN { - our $VERSION = '0.49'; + our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use XSLoader; diff --git a/lib/Class/MOP/Attribute.pm b/lib/Class/MOP/Attribute.pm index 41b2239..a1b35be 100644 --- a/lib/Class/MOP/Attribute.pm +++ b/lib/Class/MOP/Attribute.pm @@ -9,7 +9,7 @@ use Class::MOP::Method::Accessor; use Carp 'confess'; use Scalar::Util 'blessed', 'reftype', 'weaken'; -our $VERSION = '0.20'; +our $VERSION = '0.21'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Class::MOP::Object'; diff --git a/lib/Class/MOP/Immutable.pm b/lib/Class/MOP/Immutable.pm index 0b408e1..fb52bd6 100644 --- a/lib/Class/MOP/Immutable.pm +++ b/lib/Class/MOP/Immutable.pm @@ -9,7 +9,7 @@ use Class::MOP::Method::Constructor; use Carp 'confess'; use Scalar::Util 'blessed'; -our $VERSION = '0.02'; +our $VERSION = '0.03'; our $AUTHORITY = 'cpan:STEVAN'; sub new {