From: Steve Peters Date: Mon, 26 Sep 2005 23:09:44 +0000 (+0000) Subject: Upgrade to Digest 1.11 with a minor Pod fix. Also my first commit :) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3cea4b923ca6d12552930a6e7b1b9931dfdadcde;p=p5sagit%2Fp5-mst-13.2.git Upgrade to Digest 1.11 with a minor Pod fix. Also my first commit :) p4raw-id: //depot/perl@25608 --- diff --git a/lib/Digest.pm b/lib/Digest.pm index 23454df..ec0325f 100644 --- a/lib/Digest.pm +++ b/lib/Digest.pm @@ -3,10 +3,11 @@ package Digest; use strict; use vars qw($VERSION %MMAP $AUTOLOAD); -$VERSION = "1.10"; +$VERSION = "1.11_01"; %MMAP = ( "SHA-1" => ["Digest::SHA1", ["Digest::SHA", 1], ["Digest::SHA2", 1]], + "SHA-224" => [["Digest::SHA", 224]], "SHA-256" => [["Digest::SHA", 256], ["Digest::SHA2", 256]], "SHA-384" => [["Digest::SHA", 384], ["Digest::SHA2", 384]], "SHA-512" => [["Digest::SHA", 512], ["Digest::SHA2", 512]], diff --git a/lib/Digest/Changes b/lib/Digest/Changes index d4b508a..a6b9618 100644 --- a/lib/Digest/Changes +++ b/lib/Digest/Changes @@ -1,3 +1,12 @@ +2005-09-11 Gisle Aas + + Release 1.11 + + Make Digest->new("SHA-224") work. Patch by Mark Shelor + . + + + 2004-11-08 Gisle Aas Release 1.10