Bump all versions to 0.68
[gitmo/Class-MOP.git] / lib / Class / MOP / Object.pm
index defd47d..ae5b430 100644 (file)
@@ -6,7 +6,8 @@ use warnings;
 
 use Scalar::Util 'blessed';
 
-our $VERSION   = '0.65';
+our $VERSION   = '0.68';
+$VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
 # introspection
@@ -17,8 +18,7 @@ sub meta {
 }
 
 sub _new {
-    my ( $class, @args ) = @_;
-    Class::MOP::Class->initialize($class)->new_object(@args);
+    shift->meta->new_object(@_);
 }
 
 # RANT: