diff options
Diffstat (limited to 'ext/Compress')
-rw-r--r-- | ext/Compress/Raw/Zlib/Changes | 4 | ||||
-rw-r--r-- | ext/Compress/Raw/Zlib/README | 6 | ||||
-rw-r--r-- | ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm | 4 | ||||
-rw-r--r-- | ext/Compress/Zlib/Changes | 4 | ||||
-rwxr-xr-x | ext/Compress/Zlib/Makefile.PL | 16 | ||||
-rw-r--r-- | ext/Compress/Zlib/README | 6 | ||||
-rw-r--r-- | ext/Compress/Zlib/lib/Compress/Zlib.pm | 14 |
7 files changed, 32 insertions, 22 deletions
diff --git a/ext/Compress/Raw/Zlib/Changes b/ext/Compress/Raw/Zlib/Changes index 10939b5f02..1295b1e631 100644 --- a/ext/Compress/Raw/Zlib/Changes +++ b/ext/Compress/Raw/Zlib/Changes @@ -1,6 +1,10 @@ CHANGES ------- + 2.003 2 January 2007 + + * Added explicit version checking + 2.002 29 December 2006 * Documentation updates. diff --git a/ext/Compress/Raw/Zlib/README b/ext/Compress/Raw/Zlib/README index 5d8ab3be29..4e0e246471 100644 --- a/ext/Compress/Raw/Zlib/README +++ b/ext/Compress/Raw/Zlib/README @@ -1,12 +1,12 @@ Compress::Raw::Zlib - Version 2.002 + Version 2.003 - 29th December 2006 + 2nd January 2007 - Copyright (c) 2005-2006 Paul Marquess. All rights reserved. + Copyright (c) 2005-2007 Paul Marquess. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm b/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm index 0cc4b11432..70e46df76e 100644 --- a/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm +++ b/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm @@ -13,7 +13,7 @@ use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD); -$VERSION = '2.002'; +$VERSION = '2.003'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -1189,7 +1189,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2006 Paul Marquess. All rights reserved. +Copyright (c) 2005-2007 Paul Marquess. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/ext/Compress/Zlib/Changes b/ext/Compress/Zlib/Changes index 4a2112275e..73ebd5387a 100644 --- a/ext/Compress/Zlib/Changes +++ b/ext/Compress/Zlib/Changes @@ -1,6 +1,10 @@ CHANGES ------- + 2.003 2 January 2007 + + * Added explicit version checking + 2.002 29 December 2006 * Documentation updates. diff --git a/ext/Compress/Zlib/Makefile.PL b/ext/Compress/Zlib/Makefile.PL index df93a6cbb7..d2d2e1a14d 100755 --- a/ext/Compress/Zlib/Makefile.PL +++ b/ext/Compress/Zlib/Makefile.PL @@ -3,6 +3,8 @@ use strict ; require 5.004 ; +$::VERSION = '2.003' ; + use private::MakeUtil; use ExtUtils::MakeMaker 5.16 ; @@ -21,13 +23,13 @@ WriteMakefile( ( $ENV{SKIP_FOR_CORE} ? (MAN3PODS => {}) - : (PREREQ_PM => { 'Compress::Raw::Zlib' => 0, - 'IO::Compress::Base' => 0, - 'IO::Compress::Base::Common' => 0, - 'IO::Uncompress::Base' => 0, - 'IO::Compress::Gzip' => 0, - 'IO::Compress::Gzip::Constants' => 0, - 'IO::Uncompress::Gunzip' => 0, + : (PREREQ_PM => { 'Compress::Raw::Zlib' => $::VERSION, + 'IO::Compress::Base' => $::VERSION, + 'IO::Compress::Base::Common' => $::VERSION, + 'IO::Uncompress::Base' => $::VERSION, + 'IO::Compress::Gzip' => $::VERSION, + 'IO::Compress::Gzip::Constants' => $::VERSION, + 'IO::Uncompress::Gunzip' => $::VERSION, 'Scalar::Util' => 0, } ) diff --git a/ext/Compress/Zlib/README b/ext/Compress/Zlib/README index e0caaf9c09..263eb7bf94 100644 --- a/ext/Compress/Zlib/README +++ b/ext/Compress/Zlib/README @@ -1,12 +1,12 @@ Compress::Zlib - Version 2.002 + Version 2.003 - 29th December 2006 + 2nd January 2007 - Copyright (c) 1995-2006 Paul Marquess. All rights reserved. + Copyright (c) 1995-2007 Paul Marquess. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/ext/Compress/Zlib/lib/Compress/Zlib.pm b/ext/Compress/Zlib/lib/Compress/Zlib.pm index cb9508b250..e8e9da3b91 100644 --- a/ext/Compress/Zlib/lib/Compress/Zlib.pm +++ b/ext/Compress/Zlib/lib/Compress/Zlib.pm @@ -8,17 +8,17 @@ use Carp ; use IO::Handle ; use Scalar::Util qw(dualvar); -use IO::Compress::Base::Common ; -use Compress::Raw::Zlib; -use IO::Compress::Gzip; -use IO::Uncompress::Gunzip; +use IO::Compress::Base::Common 2.003 ; +use Compress::Raw::Zlib 2.003 ; +use IO::Compress::Gzip 2.003 ; +use IO::Uncompress::Gunzip 2.003 ; use strict ; use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD); -$VERSION = '2.002'; +$VERSION = '2.003'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -438,7 +438,7 @@ sub inflate package Compress::Zlib ; -use IO::Compress::Gzip::Constants; +use IO::Compress::Gzip::Constants 2.003 ; sub memGzip($) { @@ -1452,7 +1452,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 1995-2006 Paul Marquess. All rights reserved. +Copyright (c) 1995-2007 Paul Marquess. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |