bump version to 1.19
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Hash.pm
index 8d5fa2c..814faa1 100644 (file)
@@ -3,11 +3,11 @@ package Moose::Meta::Method::Accessor::Native::Hash;
 use strict;
 use warnings;
 
-our $VERSION = '1.14';
+our $VERSION = '1.19';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
-# This package is really more of a role, so it doesn't inherit from anything.
+use Moose::Role;
 
 sub _inline_check_var_is_valid_key {
     my ( $self, $var ) = @_;
@@ -18,4 +18,6 @@ sub _inline_check_var_is_valid_key {
         . qq{ unless defined $var;};
 }
 
+no Moose::Role;
+
 1;