bump version to 0.65 and update changes for stable release
[gitmo/Class-MOP.git] / lib / Class / MOP / Attribute.pm
index 7d9856c..3544dc6 100644 (file)
@@ -10,6 +10,7 @@ use Carp         'confess';
 use Scalar::Util 'blessed', 'weaken';
 
 our $VERSION   = '0.65';
+$VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Class::MOP::Object';
@@ -51,7 +52,7 @@ sub new {
         confess("A required attribute must have either 'init_arg', 'builder', or 'default'");
     }
 
-    $class->_new(%options);
+    $class->_new(\%options);
 }
 
 sub _new {