convert to Dist::Zilla
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Base / WithChecksum.pm
index 0a6ac70..2244edb 100644 (file)
@@ -6,9 +6,6 @@ with 'MooseX::Storage::Basic';
 use Digest       ();
 use Data::Dumper ();
 
-our $VERSION   = '0.24';
-our $AUTHORITY = 'cpan:STEVAN';
-
 our $DIGEST_MARKER = '__DIGEST__';
 
 around pack => sub {
@@ -85,7 +82,7 @@ sub _digest_object {
         }
     }
     else {
-        return Digest->new($d || "SHA1", @args);
+        return Digest->new($d || "SHA-1", @args);
     }
 }