bumping up to 0.10
Stevan Little [Tue, 14 Feb 2006 22:47:36 +0000 (22:47 +0000)]
Changes
README
lib/Class/MOP.pm

diff --git a/Changes b/Changes
index 75cbf1b..7cadf51 100644 (file)
--- 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 (file)
--- 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
index a3c6298..119f89e 100644 (file)
@@ -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