Bump versions
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Format / YAML.pm
index d02ee0e..c9bbcf9 100644 (file)
@@ -1,4 +1,3 @@
-
 package MooseX::Storage::Format::YAML;
 use Moose::Role;
 
@@ -11,7 +10,7 @@ use Best [
     [ qw[Load Dump] ]
 ];
 
-our $VERSION   = '0.20';
+our $VERSION   = '0.22';
 our $AUTHORITY = 'cpan:STEVAN';
 
 requires 'pack';
@@ -27,6 +26,8 @@ sub freeze {
     Dump( $self->pack(@args) );
 }
 
+no Moose::Role;
+
 1;
 
 __END__