diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-10-01 00:15:01 +0200 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-10-01 00:15:01 +0200 |
commit | c059848dda15ddd2e5e825b0731428fe2ac3e644 (patch) | |
tree | 734636756e9cf0058308167e0cf7b52b5b76db94 /cpan | |
parent | 5d51ce98fae3de078d69723f2d6256ab12ad8548 (diff) | |
download | perl-c059848dda15ddd2e5e825b0731428fe2ac3e644.tar.gz |
Upgrade Digest::MD5 from version 2.50 to 2.51
Diffstat (limited to 'cpan')
-rw-r--r-- | cpan/Digest-MD5/Changes | 13 | ||||
-rw-r--r-- | cpan/Digest-MD5/MD5.pm | 2 | ||||
-rw-r--r-- | cpan/Digest-MD5/Makefile.PL | 4 |
3 files changed, 17 insertions, 2 deletions
diff --git a/cpan/Digest-MD5/Changes b/cpan/Digest-MD5/Changes index 10e98b76f2..de43f07aa8 100644 --- a/cpan/Digest-MD5/Changes +++ b/cpan/Digest-MD5/Changes @@ -1,3 +1,15 @@ +2010-09-30 Gisle Aas <gisle@ActiveState.com> + + Release 2.50 + + Florian Ragwitz (1): + Fix compilation with c++ compilers + + Gisle Aas (1): + Fix repository specification in META.yml + + + 2010-09-25 Gisle Aas <gisle@ActiveState.com> Release 2.50 @@ -9,6 +21,7 @@ Attach context pointers using sv magic Add failing test for thread cloning Clone MD5 contexts on thread cloning + get_md5_ctx should never return anything but a valid pointer Gisle Aas (1): perl-5.6 no longer supported diff --git a/cpan/Digest-MD5/MD5.pm b/cpan/Digest-MD5/MD5.pm index 978eefadc0..1ccba4e75d 100644 --- a/cpan/Digest-MD5/MD5.pm +++ b/cpan/Digest-MD5/MD5.pm @@ -3,7 +3,7 @@ package Digest::MD5; use strict; use vars qw($VERSION @ISA @EXPORT_OK); -$VERSION = '2.50'; +$VERSION = '2.51'; require Exporter; *import = \&Exporter::import; diff --git a/cpan/Digest-MD5/Makefile.PL b/cpan/Digest-MD5/Makefile.PL index 69b2ed099a..5f90338804 100644 --- a/cpan/Digest-MD5/Makefile.PL +++ b/cpan/Digest-MD5/Makefile.PL @@ -29,7 +29,9 @@ WriteMakefile( 'XSLoader' => 0, }, 'META_MERGE' => { - repository => 'http://github.com/gisle/digest-md5', + resources => { + repository => 'http://github.com/gisle/digest-md5', + } }, 'INSTALLDIRS' => 'perl', @extra, |