diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-01-29 21:23:41 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-01-29 21:24:41 +0000 |
commit | ecea5ab202c1df4f15b37533c4fc0810f08e3c26 (patch) | |
tree | b4c04cfd6402becb7e7d77b01158bfde83df883a | |
parent | df6975089daadd24b3b4d0432d9da65c161e3d39 (diff) | |
download | perl-ecea5ab202c1df4f15b37533c4fc0810f08e3c26.tar.gz |
Update Compress-Raw-Zlib to CPAN version 2.048
[DELTA]
2.048 29 January 2012
* Set minimum zlib version to 1.2.0
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/Changes | 4 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/README | 8 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm | 2 | ||||
-rw-r--r-- | pod/perldelta.pod | 2 |
5 files changed, 11 insertions, 7 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 4ba9a31c65..1b7679441e 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -375,7 +375,7 @@ use File::Glob qw(:case); 'Compress::Raw::Zlib' => { 'MAINTAINER' => 'pmqs', - 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.047.tar.gz', + 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.048.tar.gz', 'FILES' => q[cpan/Compress-Raw-Zlib], 'EXCLUDED' => [ diff --git a/cpan/Compress-Raw-Zlib/Changes b/cpan/Compress-Raw-Zlib/Changes index 7070d0fc22..29e658ead8 100644 --- a/cpan/Compress-Raw-Zlib/Changes +++ b/cpan/Compress-Raw-Zlib/Changes @@ -1,6 +1,10 @@ CHANGES ------- + 2.048 29 January 2012 + + * Set minimum zlib version to 1.2.0 + 2.047 28 January 2012 * Allow flush to be called multiple times without any intermediate diff --git a/cpan/Compress-Raw-Zlib/README b/cpan/Compress-Raw-Zlib/README index 93b6e00ce8..1622ba0f46 100644 --- a/cpan/Compress-Raw-Zlib/README +++ b/cpan/Compress-Raw-Zlib/README @@ -1,9 +1,9 @@ Compress-Raw-Zlib - Version 2.047 + Version 2.048 - 28th January 2012 + 29th January 2012 Copyright (c) 2005-2012 Paul Marquess. All rights reserved. This program is free software; you can redistribute it @@ -71,7 +71,7 @@ zlib library is used: 3. Use a pre-built zlib library. Note that if you intend to use either Option 2 or 3, you need to have -zlib version 1.0.5 or better. +zlib version 1.2.0 or better. The contents of the file config.in are used to control which of the three options is actually used. This file is read during the @@ -355,7 +355,7 @@ To help me help you, I need all of the following information: If you haven't installed Compress-Raw-Zlib then search Compress::Raw::Zlib.pm for a line like this: - $VERSION = "2.047" ; + $VERSION = "2.048" ; c. The version of zlib you have used. If you have successfully installed Compress-Raw-Zlib, this one-liner diff --git a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm index ab7dc5b187..3a4bcfffda 100644 --- a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm +++ b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm @@ -11,7 +11,7 @@ use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, %EXPORT_TAGS, @EXPORT_OK, $AUTOLOAD, %DEFLATE_CONSTANTS, @DEFLATE_CONSTANTS ); -$VERSION = '2.047'; +$VERSION = '2.048'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/pod/perldelta.pod b/pod/perldelta.pod index a0dced7baf..4a008a427d 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -129,7 +129,7 @@ L<Compress::Raw::Bzip2> has been upgraded from version 2.045 to version 2.048. =item * -L<Compress::Raw::Zlib> has been upgraded from version 2.045 to version 2.047. +L<Compress::Raw::Zlib> has been upgraded from version 2.045 to version 2.048. =item * |