From: Stevan Little Date: Tue, 14 Feb 2006 22:47:36 +0000 (+0000) Subject: bumping up to 0.10 X-Git-Tag: 0_10~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3bf7644b1429f6ed6cf1958077f0914a07dc46d5;p=gitmo%2FClass-MOP.git bumping up to 0.10 --- diff --git a/Changes b/Changes index 75cbf1b..7cadf51 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,10 @@ Revision history for Perl extension Class-MOP. -0.07 +0.10 Tues Feb. 14, 2006 + ** This release was mostly about writing more tests and + cleaning out old and dusty code, the MOP should now + be considered "ready to use". + - adding more tests to get coverage up a little higher, mostly testing errors and edge cases. - test coverage is now at 99% diff --git a/README b/README index 71f7704..9d550bc 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Class::MOP version 0.07 +Class::MOP version 0.10 =========================== See the individual module documentation for more information diff --git a/lib/Class/MOP.pm b/lib/Class/MOP.pm index a3c6298..119f89e 100644 --- a/lib/Class/MOP.pm +++ b/lib/Class/MOP.pm @@ -11,7 +11,7 @@ use Class::MOP::Class; use Class::MOP::Attribute; use Class::MOP::Method; -our $VERSION = '0.07'; +our $VERSION = '0.10'; ## ---------------------------------------------------------------------------- ## Setting up our environment ... @@ -20,9 +20,7 @@ our $VERSION = '0.07'; ## that it can operate effectively. Those things are done here. ## ---------------------------------------------------------------------------- -# so that mixins can have runtime -# dispatched SUPER calls -use SUPER (); +# ... nothing yet actually ;) ## ---------------------------------------------------------------------------- ## Bootstrapping