bump version # and update changes
[gitmo/Class-MOP.git] / lib / Class / MOP / Method / Accessor.pm
index f882ae5..4cf99bd 100644 (file)
@@ -7,7 +7,8 @@ use warnings;
 use Carp         'confess';
 use Scalar::Util 'blessed', 'weaken';
 
-our $VERSION   = '0.65';
+our $VERSION   = '0.70';
+$VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Class::MOP::Method::Generated';
@@ -28,7 +29,7 @@ sub new {
     ($options{package_name} && $options{name})
         || confess "You must supply the package_name and name parameters $Class::MOP::Method::UPGRADE_ERROR_TEXT";
 
-    my $self = $class->_new(%options);
+    my $self = $class->_new(\%options);
 
     # we don't want this creating
     # a cycle in the code, if not
@@ -41,11 +42,12 @@ sub new {
 }
 
 sub _new {
-    my ( $class, %options ) = @_;
+    my $class = shift;
+    my $options = @_ == 1 ? $_[0] : {@_};
 
-    $options{is_inline} ||= 0;
+    $options->{is_inline} ||= 0;
 
-    return bless \%options, $class;
+    return bless $options, $class;
 }
 
 ## accessors