From 2c34982cf074bb93228dc95f4c9d61fc31a0c1a9 Mon Sep 17 00:00:00 2001 From: pmqs Date: Sat, 7 Dec 2019 15:19:51 +0000 Subject: [PATCH] version 2.093 --- Changes | 4 +++ META.json | 6 ++-- META.yml | 6 ++-- Makefile.PL | 2 +- README | 6 ++-- lib/Compress/Zlib.pm | 12 +++---- lib/IO/Compress/Adapter/Bzip2.pm | 6 ++-- lib/IO/Compress/Adapter/Deflate.pm | 6 ++-- lib/IO/Compress/Adapter/Identity.pm | 4 +-- lib/IO/Compress/Base.pm | 4 +-- lib/IO/Compress/Base/Common.pm | 2 +- lib/IO/Compress/Bzip2.pm | 12 +++---- lib/IO/Compress/Deflate.pm | 12 +++---- lib/IO/Compress/Gzip.pm | 14 ++++---- lib/IO/Compress/Gzip/Constants.pm | 2 +- lib/IO/Compress/RawDeflate.pm | 14 ++++---- lib/IO/Compress/Zip.pm | 26 +++++++-------- lib/IO/Compress/Zip/Constants.pm | 2 +- lib/IO/Compress/Zlib/Constants.pm | 2 +- lib/IO/Compress/Zlib/Extra.pm | 4 +-- lib/IO/Uncompress/Adapter/Bunzip2.pm | 6 ++-- lib/IO/Uncompress/Adapter/Identity.pm | 6 ++-- lib/IO/Uncompress/Adapter/Inflate.pm | 6 ++-- lib/IO/Uncompress/AnyInflate.pm | 20 ++++++------ lib/IO/Uncompress/AnyUncompress.pm | 46 +++++++++++++-------------- lib/IO/Uncompress/Base.pm | 4 +-- lib/IO/Uncompress/Bunzip2.pm | 10 +++--- lib/IO/Uncompress/Gunzip.pm | 14 ++++---- lib/IO/Uncompress/Inflate.pm | 10 +++--- lib/IO/Uncompress/RawInflate.pm | 12 +++---- lib/IO/Uncompress/Unzip.pm | 18 +++++------ t/000prereq.t | 2 +- 32 files changed, 152 insertions(+), 148 deletions(-) diff --git a/Changes b/Changes index 6823ee5..ba15691 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,10 @@ CHANGES ------- + 2.093 7 December 2019 + + * No changes + 2.092 4 December 2019 * No changes diff --git a/META.json b/META.json index 4c7cd52..55d4e0d 100644 --- a/META.json +++ b/META.json @@ -34,8 +34,8 @@ }, "runtime" : { "requires" : { - "Compress::Raw::Bzip2" : "2.092", - "Compress::Raw::Zlib" : "2.092", + "Compress::Raw::Bzip2" : "2.093", + "Compress::Raw::Zlib" : "2.093", "Scalar::Util" : "0" } } @@ -52,6 +52,6 @@ "web" : "https://github.com/pmqs/IO-Compress" } }, - "version" : "2.092", + "version" : "2.093", "x_serialization_backend" : "JSON::PP version 2.97001" } diff --git a/META.yml b/META.yml index c11a9cc..f06e716 100644 --- a/META.yml +++ b/META.yml @@ -20,12 +20,12 @@ no_index: - t - private requires: - Compress::Raw::Bzip2: '2.092' - Compress::Raw::Zlib: '2.092' + Compress::Raw::Bzip2: '2.093' + Compress::Raw::Zlib: '2.093' Scalar::Util: '0' resources: bugtracker: https://github.com/pmqs/IO-Compress/issues homepage: https://github.com/pmqs/IO-Compress repository: git://github.com/pmqs/IO-Compress.git -version: '2.092' +version: '2.093' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/Makefile.PL b/Makefile.PL index 681547d..d22a4c2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,7 @@ use strict ; require 5.006 ; -$::VERSION = '2.092' ; +$::VERSION = '2.093' ; use lib '.'; use private::MakeUtil; diff --git a/README b/README index 34b588c..664c384 100644 --- a/README +++ b/README @@ -1,9 +1,9 @@ IO-Compress - Version 2.092 + Version 2.093 - 4 December 2019 + 7 December 2019 Copyright (c) 1995-2019 Paul Marquess. All rights reserved. This program is free software; you can redistribute it @@ -110,7 +110,7 @@ To help me help you, I need all of the following information: If you haven't installed IO-Compress then search IO::Compress::Gzip.pm for a line like this: - $VERSION = "2.092" ; + $VERSION = "2.093" ; 2. If you are having problems building IO-Compress, send me a complete log of what happened. Start by unpacking the IO-Compress diff --git a/lib/Compress/Zlib.pm b/lib/Compress/Zlib.pm index 21512db..4a0aae6 100644 --- a/lib/Compress/Zlib.pm +++ b/lib/Compress/Zlib.pm @@ -7,17 +7,17 @@ use Carp ; use IO::Handle ; use Scalar::Util qw(dualvar); -use IO::Compress::Base::Common 2.092 ; -use Compress::Raw::Zlib 2.092 ; -use IO::Compress::Gzip 2.092 ; -use IO::Uncompress::Gunzip 2.092 ; +use IO::Compress::Base::Common 2.093 ; +use Compress::Raw::Zlib 2.093 ; +use IO::Compress::Gzip 2.093 ; +use IO::Uncompress::Gunzip 2.093 ; use strict ; use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); -$VERSION = '2.092'; +$VERSION = '2.093'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -461,7 +461,7 @@ sub inflate package Compress::Zlib ; -use IO::Compress::Gzip::Constants 2.092 ; +use IO::Compress::Gzip::Constants 2.093 ; sub memGzip($) { diff --git a/lib/IO/Compress/Adapter/Bzip2.pm b/lib/IO/Compress/Adapter/Bzip2.pm index cdaa607..a8a7762 100644 --- a/lib/IO/Compress/Adapter/Bzip2.pm +++ b/lib/IO/Compress/Adapter/Bzip2.pm @@ -4,12 +4,12 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status); +use IO::Compress::Base::Common 2.093 qw(:Status); -use Compress::Raw::Bzip2 2.092 ; +use Compress::Raw::Bzip2 2.093 ; our ($VERSION); -$VERSION = '2.092'; +$VERSION = '2.093'; sub mkCompObject { diff --git a/lib/IO/Compress/Adapter/Deflate.pm b/lib/IO/Compress/Adapter/Deflate.pm index fbfe120..140d29f 100644 --- a/lib/IO/Compress/Adapter/Deflate.pm +++ b/lib/IO/Compress/Adapter/Deflate.pm @@ -4,13 +4,13 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status); -use Compress::Raw::Zlib 2.092 qw( !crc32 !adler32 ) ; +use IO::Compress::Base::Common 2.093 qw(:Status); +use Compress::Raw::Zlib 2.093 qw( !crc32 !adler32 ) ; require Exporter; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, @EXPORT, %DEFLATE_CONSTANTS); -$VERSION = '2.092'; +$VERSION = '2.093'; @ISA = qw(Exporter); @EXPORT_OK = @Compress::Raw::Zlib::DEFLATE_CONSTANTS; %EXPORT_TAGS = %Compress::Raw::Zlib::DEFLATE_CONSTANTS; diff --git a/lib/IO/Compress/Adapter/Identity.pm b/lib/IO/Compress/Adapter/Identity.pm index 3c00cc3..487cfa7 100644 --- a/lib/IO/Compress/Adapter/Identity.pm +++ b/lib/IO/Compress/Adapter/Identity.pm @@ -4,10 +4,10 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status); +use IO::Compress::Base::Common 2.093 qw(:Status); our ($VERSION); -$VERSION = '2.092'; +$VERSION = '2.093'; sub mkCompObject { diff --git a/lib/IO/Compress/Base.pm b/lib/IO/Compress/Base.pm index afcb49f..f817d13 100644 --- a/lib/IO/Compress/Base.pm +++ b/lib/IO/Compress/Base.pm @@ -6,7 +6,7 @@ require 5.006 ; use strict ; use warnings; -use IO::Compress::Base::Common 2.092 ; +use IO::Compress::Base::Common 2.093 ; use IO::File (); ; use Scalar::Util (); @@ -20,7 +20,7 @@ use Symbol(); our (@ISA, $VERSION); @ISA = qw(IO::File Exporter); -$VERSION = '2.092'; +$VERSION = '2.093'; #Can't locate object method "SWASHNEW" via package "utf8" (perhaps you forgot to load "utf8"?) at .../ext/Compress-Zlib/Gzip/blib/lib/Compress/Zlib/Common.pm line 16. diff --git a/lib/IO/Compress/Base/Common.pm b/lib/IO/Compress/Base/Common.pm index 784fde3..87af18b 100644 --- a/lib/IO/Compress/Base/Common.pm +++ b/lib/IO/Compress/Base/Common.pm @@ -11,7 +11,7 @@ use File::GlobMapper; require Exporter; our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE); @ISA = qw(Exporter); -$VERSION = '2.092'; +$VERSION = '2.093'; @EXPORT = qw( isaFilehandle isaFilename isaScalar whatIsInput whatIsOutput diff --git a/lib/IO/Compress/Bzip2.pm b/lib/IO/Compress/Bzip2.pm index ce5a0cf..13d3b46 100644 --- a/lib/IO/Compress/Bzip2.pm +++ b/lib/IO/Compress/Bzip2.pm @@ -5,16 +5,16 @@ use warnings; use bytes; require Exporter ; -use IO::Compress::Base 2.092 ; +use IO::Compress::Base 2.093 ; -use IO::Compress::Base::Common 2.092 qw(); -use IO::Compress::Adapter::Bzip2 2.092 ; +use IO::Compress::Base::Common 2.093 qw(); +use IO::Compress::Adapter::Bzip2 2.093 ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bzip2Error); -$VERSION = '2.092'; +$VERSION = '2.093'; $Bzip2Error = ''; @ISA = qw(IO::Compress::Base Exporter); @@ -51,7 +51,7 @@ sub getExtraParams { my $self = shift ; - use IO::Compress::Base::Common 2.092 qw(:Parse); + use IO::Compress::Base::Common 2.093 qw(:Parse); return ( 'blocksize100k' => [IO::Compress::Base::Common::Parse_unsigned, 1], @@ -223,7 +223,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Compress/Deflate.pm b/lib/IO/Compress/Deflate.pm index 36148cf..5ecac19 100644 --- a/lib/IO/Compress/Deflate.pm +++ b/lib/IO/Compress/Deflate.pm @@ -8,16 +8,16 @@ use bytes; require Exporter ; -use IO::Compress::RawDeflate 2.092 (); -use IO::Compress::Adapter::Deflate 2.092 ; +use IO::Compress::RawDeflate 2.093 (); +use IO::Compress::Adapter::Deflate 2.093 ; -use IO::Compress::Zlib::Constants 2.092 ; -use IO::Compress::Base::Common 2.092 qw(); +use IO::Compress::Zlib::Constants 2.093 ; +use IO::Compress::Base::Common 2.093 qw(); our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $DeflateError); -$VERSION = '2.092'; +$VERSION = '2.093'; $DeflateError = ''; @ISA = qw(IO::Compress::RawDeflate Exporter); @@ -252,7 +252,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Compress/Gzip.pm b/lib/IO/Compress/Gzip.pm index b726dfa..3fd1369 100644 --- a/lib/IO/Compress/Gzip.pm +++ b/lib/IO/Compress/Gzip.pm @@ -8,12 +8,12 @@ use bytes; require Exporter ; -use IO::Compress::RawDeflate 2.092 () ; -use IO::Compress::Adapter::Deflate 2.092 ; +use IO::Compress::RawDeflate 2.093 () ; +use IO::Compress::Adapter::Deflate 2.093 ; -use IO::Compress::Base::Common 2.092 qw(:Status ); -use IO::Compress::Gzip::Constants 2.092 ; -use IO::Compress::Zlib::Extra 2.092 ; +use IO::Compress::Base::Common 2.093 qw(:Status ); +use IO::Compress::Gzip::Constants 2.093 ; +use IO::Compress::Zlib::Extra 2.093 ; BEGIN { @@ -25,7 +25,7 @@ BEGIN our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $GzipError); -$VERSION = '2.092'; +$VERSION = '2.093'; $GzipError = '' ; @ISA = qw(IO::Compress::RawDeflate Exporter); @@ -362,7 +362,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Compress/Gzip/Constants.pm b/lib/IO/Compress/Gzip/Constants.pm index 5e20572..1d18fc4 100644 --- a/lib/IO/Compress/Gzip/Constants.pm +++ b/lib/IO/Compress/Gzip/Constants.pm @@ -9,7 +9,7 @@ require Exporter; our ($VERSION, @ISA, @EXPORT, %GZIP_OS_Names); our ($GZIP_FNAME_INVALID_CHAR_RE, $GZIP_FCOMMENT_INVALID_CHAR_RE); -$VERSION = '2.092'; +$VERSION = '2.093'; @ISA = qw(Exporter); diff --git a/lib/IO/Compress/RawDeflate.pm b/lib/IO/Compress/RawDeflate.pm index 91c4cda..c833f5e 100644 --- a/lib/IO/Compress/RawDeflate.pm +++ b/lib/IO/Compress/RawDeflate.pm @@ -6,15 +6,15 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base 2.092 ; -use IO::Compress::Base::Common 2.092 qw(:Status ); -use IO::Compress::Adapter::Deflate 2.092 ; +use IO::Compress::Base 2.093 ; +use IO::Compress::Base::Common 2.093 qw(:Status ); +use IO::Compress::Adapter::Deflate 2.093 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %DEFLATE_CONSTANTS, %EXPORT_TAGS, $RawDeflateError); -$VERSION = '2.092'; +$VERSION = '2.093'; $RawDeflateError = ''; @ISA = qw(IO::Compress::Base Exporter); @@ -116,8 +116,8 @@ sub getExtraParams return getZlibParams(); } -use IO::Compress::Base::Common 2.092 qw(:Parse); -use Compress::Raw::Zlib 2.092 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY); +use IO::Compress::Base::Common 2.093 qw(:Parse); +use Compress::Raw::Zlib 2.093 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY); our %PARAMS = ( #'method' => [IO::Compress::Base::Common::Parse_unsigned, Z_DEFLATED], 'level' => [IO::Compress::Base::Common::Parse_signed, Z_DEFAULT_COMPRESSION], @@ -308,7 +308,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Compress/Zip.pm b/lib/IO/Compress/Zip.pm index 7cd3866..70b98b8 100644 --- a/lib/IO/Compress/Zip.pm +++ b/lib/IO/Compress/Zip.pm @@ -4,30 +4,30 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status ); -use IO::Compress::RawDeflate 2.092 (); -use IO::Compress::Adapter::Deflate 2.092 ; -use IO::Compress::Adapter::Identity 2.092 ; -use IO::Compress::Zlib::Extra 2.092 ; -use IO::Compress::Zip::Constants 2.092 ; +use IO::Compress::Base::Common 2.093 qw(:Status ); +use IO::Compress::RawDeflate 2.093 (); +use IO::Compress::Adapter::Deflate 2.093 ; +use IO::Compress::Adapter::Identity 2.093 ; +use IO::Compress::Zlib::Extra 2.093 ; +use IO::Compress::Zip::Constants 2.093 ; use File::Spec(); use Config; -use Compress::Raw::Zlib 2.092 (); +use Compress::Raw::Zlib 2.093 (); BEGIN { eval { require IO::Compress::Adapter::Bzip2 ; - import IO::Compress::Adapter::Bzip2 2.092 ; + import IO::Compress::Adapter::Bzip2 2.093 ; require IO::Compress::Bzip2 ; - import IO::Compress::Bzip2 2.092 ; + import IO::Compress::Bzip2 2.093 ; } ; eval { require IO::Compress::Adapter::Lzma ; - import IO::Compress::Adapter::Lzma 2.092 ; + import IO::Compress::Adapter::Lzma 2.093 ; require IO::Compress::Lzma ; - import IO::Compress::Lzma 2.092 ; + import IO::Compress::Lzma 2.093 ; } ; } @@ -36,7 +36,7 @@ require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $ZipError); -$VERSION = '2.092'; +$VERSION = '2.093'; $ZipError = ''; @ISA = qw(IO::Compress::RawDeflate Exporter); @@ -966,7 +966,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Compress/Zip/Constants.pm b/lib/IO/Compress/Zip/Constants.pm index 9925d1d..edae0c2 100644 --- a/lib/IO/Compress/Zip/Constants.pm +++ b/lib/IO/Compress/Zip/Constants.pm @@ -7,7 +7,7 @@ require Exporter; our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS); -$VERSION = '2.092'; +$VERSION = '2.093'; @ISA = qw(Exporter); diff --git a/lib/IO/Compress/Zlib/Constants.pm b/lib/IO/Compress/Zlib/Constants.pm index 634b13f..c2fecba 100644 --- a/lib/IO/Compress/Zlib/Constants.pm +++ b/lib/IO/Compress/Zlib/Constants.pm @@ -9,7 +9,7 @@ require Exporter; our ($VERSION, @ISA, @EXPORT); -$VERSION = '2.092'; +$VERSION = '2.093'; @ISA = qw(Exporter); diff --git a/lib/IO/Compress/Zlib/Extra.pm b/lib/IO/Compress/Zlib/Extra.pm index 1761741..6e13d4f 100644 --- a/lib/IO/Compress/Zlib/Extra.pm +++ b/lib/IO/Compress/Zlib/Extra.pm @@ -8,9 +8,9 @@ use bytes; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS); -$VERSION = '2.092'; +$VERSION = '2.093'; -use IO::Compress::Gzip::Constants 2.092 ; +use IO::Compress::Gzip::Constants 2.093 ; sub ExtraFieldError { diff --git a/lib/IO/Uncompress/Adapter/Bunzip2.pm b/lib/IO/Uncompress/Adapter/Bunzip2.pm index 4abd672..3fc176e 100644 --- a/lib/IO/Uncompress/Adapter/Bunzip2.pm +++ b/lib/IO/Uncompress/Adapter/Bunzip2.pm @@ -4,12 +4,12 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status); +use IO::Compress::Base::Common 2.093 qw(:Status); -use Compress::Raw::Bzip2 2.092 ; +use Compress::Raw::Bzip2 2.093 ; our ($VERSION, @ISA); -$VERSION = '2.092'; +$VERSION = '2.093'; sub mkUncompObject { diff --git a/lib/IO/Uncompress/Adapter/Identity.pm b/lib/IO/Uncompress/Adapter/Identity.pm index 7b71d27..c8622a5 100755 --- a/lib/IO/Uncompress/Adapter/Identity.pm +++ b/lib/IO/Uncompress/Adapter/Identity.pm @@ -4,14 +4,14 @@ use warnings; use strict; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status); +use IO::Compress::Base::Common 2.093 qw(:Status); use IO::Compress::Zip::Constants ; our ($VERSION); -$VERSION = '2.092'; +$VERSION = '2.093'; -use Compress::Raw::Zlib 2.092 (); +use Compress::Raw::Zlib 2.093 (); sub mkUncompObject { diff --git a/lib/IO/Uncompress/Adapter/Inflate.pm b/lib/IO/Uncompress/Adapter/Inflate.pm index 1df49cc..a27af5b 100644 --- a/lib/IO/Uncompress/Adapter/Inflate.pm +++ b/lib/IO/Uncompress/Adapter/Inflate.pm @@ -4,11 +4,11 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status); -use Compress::Raw::Zlib 2.092 qw(Z_OK Z_BUF_ERROR Z_STREAM_END Z_FINISH MAX_WBITS); +use IO::Compress::Base::Common 2.093 qw(:Status); +use Compress::Raw::Zlib 2.093 qw(Z_OK Z_BUF_ERROR Z_STREAM_END Z_FINISH MAX_WBITS); our ($VERSION); -$VERSION = '2.092'; +$VERSION = '2.093'; diff --git a/lib/IO/Uncompress/AnyInflate.pm b/lib/IO/Uncompress/AnyInflate.pm index 656f861..6172737 100644 --- a/lib/IO/Uncompress/AnyInflate.pm +++ b/lib/IO/Uncompress/AnyInflate.pm @@ -6,22 +6,22 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 (); +use IO::Compress::Base::Common 2.093 (); -use IO::Uncompress::Adapter::Inflate 2.092 (); +use IO::Uncompress::Adapter::Inflate 2.093 (); -use IO::Uncompress::Base 2.092 ; -use IO::Uncompress::Gunzip 2.092 ; -use IO::Uncompress::Inflate 2.092 ; -use IO::Uncompress::RawInflate 2.092 ; -use IO::Uncompress::Unzip 2.092 ; +use IO::Uncompress::Base 2.093 ; +use IO::Uncompress::Gunzip 2.093 ; +use IO::Uncompress::Inflate 2.093 ; +use IO::Uncompress::RawInflate 2.093 ; +use IO::Uncompress::Unzip 2.093 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyInflateError); -$VERSION = '2.092'; +$VERSION = '2.093'; $AnyInflateError = ''; @ISA = qw(IO::Uncompress::Base Exporter); @@ -48,7 +48,7 @@ sub anyinflate sub getExtraParams { - use IO::Compress::Base::Common 2.092 qw(:Parse); + use IO::Compress::Base::Common 2.093 qw(:Parse); return ( 'rawinflate' => [Parse_boolean, 0] ) ; } @@ -227,7 +227,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Uncompress/AnyUncompress.pm b/lib/IO/Uncompress/AnyUncompress.pm index 8ed7d1f..251b7cf 100644 --- a/lib/IO/Uncompress/AnyUncompress.pm +++ b/lib/IO/Uncompress/AnyUncompress.pm @@ -4,16 +4,16 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 (); +use IO::Compress::Base::Common 2.093 (); -use IO::Uncompress::Base 2.092 ; +use IO::Uncompress::Base 2.093 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError); -$VERSION = '2.092'; +$VERSION = '2.093'; $AnyUncompressError = ''; @ISA = qw(IO::Uncompress::Base Exporter); @@ -33,26 +33,26 @@ BEGIN # Don't trigger any __DIE__ Hooks. local $SIG{__DIE__}; - eval ' use IO::Uncompress::Adapter::Inflate 2.092 ;'; - eval ' use IO::Uncompress::Adapter::Bunzip2 2.092 ;'; - eval ' use IO::Uncompress::Adapter::LZO 2.092 ;'; - eval ' use IO::Uncompress::Adapter::Lzf 2.092 ;'; - eval ' use IO::Uncompress::Adapter::UnLzma 2.092 ;'; - eval ' use IO::Uncompress::Adapter::UnXz 2.092 ;'; + eval ' use IO::Uncompress::Adapter::Inflate 2.093 ;'; + eval ' use IO::Uncompress::Adapter::Bunzip2 2.093 ;'; + eval ' use IO::Uncompress::Adapter::LZO 2.093 ;'; + eval ' use IO::Uncompress::Adapter::Lzf 2.093 ;'; + eval ' use IO::Uncompress::Adapter::UnLzma 2.093 ;'; + eval ' use IO::Uncompress::Adapter::UnXz 2.093 ;'; eval ' use IO::Uncompress::Adapter::UnZstd 2.083 ;'; - eval ' use IO::Uncompress::Adapter::UnLzip 2.092 ;'; - - eval ' use IO::Uncompress::Bunzip2 2.092 ;'; - eval ' use IO::Uncompress::UnLzop 2.092 ;'; - eval ' use IO::Uncompress::Gunzip 2.092 ;'; - eval ' use IO::Uncompress::Inflate 2.092 ;'; - eval ' use IO::Uncompress::RawInflate 2.092 ;'; - eval ' use IO::Uncompress::Unzip 2.092 ;'; - eval ' use IO::Uncompress::UnLzf 2.092 ;'; - eval ' use IO::Uncompress::UnLzma 2.092 ;'; - eval ' use IO::Uncompress::UnXz 2.092 ;'; - eval ' use IO::Uncompress::UnZstd 2.092 ;'; - eval ' use IO::Uncompress::UnLzip 2.092 ;'; + eval ' use IO::Uncompress::Adapter::UnLzip 2.093 ;'; + + eval ' use IO::Uncompress::Bunzip2 2.093 ;'; + eval ' use IO::Uncompress::UnLzop 2.093 ;'; + eval ' use IO::Uncompress::Gunzip 2.093 ;'; + eval ' use IO::Uncompress::Inflate 2.093 ;'; + eval ' use IO::Uncompress::RawInflate 2.093 ;'; + eval ' use IO::Uncompress::Unzip 2.093 ;'; + eval ' use IO::Uncompress::UnLzf 2.093 ;'; + eval ' use IO::Uncompress::UnLzma 2.093 ;'; + eval ' use IO::Uncompress::UnXz 2.093 ;'; + eval ' use IO::Uncompress::UnZstd 2.093 ;'; + eval ' use IO::Uncompress::UnLzip 2.093 ;'; } @@ -381,7 +381,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Uncompress/Base.pm b/lib/IO/Uncompress/Base.pm index e23d639..b9901ca 100644 --- a/lib/IO/Uncompress/Base.pm +++ b/lib/IO/Uncompress/Base.pm @@ -9,12 +9,12 @@ our (@ISA, $VERSION, @EXPORT_OK, %EXPORT_TAGS); @ISA = qw(IO::File Exporter); -$VERSION = '2.092'; +$VERSION = '2.093'; use constant G_EOF => 0 ; use constant G_ERR => -1 ; -use IO::Compress::Base::Common 2.092 ; +use IO::Compress::Base::Common 2.093 ; use IO::File ; use Symbol; diff --git a/lib/IO/Uncompress/Bunzip2.pm b/lib/IO/Uncompress/Bunzip2.pm index 7e17e3c..8e805d4 100644 --- a/lib/IO/Uncompress/Bunzip2.pm +++ b/lib/IO/Uncompress/Bunzip2.pm @@ -4,15 +4,15 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status ); +use IO::Compress::Base::Common 2.093 qw(:Status ); -use IO::Uncompress::Base 2.092 ; -use IO::Uncompress::Adapter::Bunzip2 2.092 ; +use IO::Uncompress::Base 2.093 ; +use IO::Uncompress::Adapter::Bunzip2 2.093 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bunzip2Error); -$VERSION = '2.092'; +$VERSION = '2.093'; $Bunzip2Error = ''; @ISA = qw(IO::Uncompress::Base Exporter); @@ -223,7 +223,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Uncompress/Gunzip.pm b/lib/IO/Uncompress/Gunzip.pm index d82331b..6e57e96 100644 --- a/lib/IO/Uncompress/Gunzip.pm +++ b/lib/IO/Uncompress/Gunzip.pm @@ -9,12 +9,12 @@ use strict ; use warnings; use bytes; -use IO::Uncompress::RawInflate 2.092 ; +use IO::Uncompress::RawInflate 2.093 ; -use Compress::Raw::Zlib 2.092 () ; -use IO::Compress::Base::Common 2.092 qw(:Status ); -use IO::Compress::Gzip::Constants 2.092 ; -use IO::Compress::Zlib::Extra 2.092 ; +use Compress::Raw::Zlib 2.093 () ; +use IO::Compress::Base::Common 2.093 qw(:Status ); +use IO::Compress::Gzip::Constants 2.093 ; +use IO::Compress::Zlib::Extra 2.093 ; require Exporter ; @@ -28,7 +28,7 @@ Exporter::export_ok_tags('all'); $GunzipError = ''; -$VERSION = '2.092'; +$VERSION = '2.093'; sub new { @@ -362,7 +362,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Uncompress/Inflate.pm b/lib/IO/Uncompress/Inflate.pm index b3ec77a..993a1dd 100644 --- a/lib/IO/Uncompress/Inflate.pm +++ b/lib/IO/Uncompress/Inflate.pm @@ -5,15 +5,15 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base::Common 2.092 qw(:Status ); -use IO::Compress::Zlib::Constants 2.092 ; +use IO::Compress::Base::Common 2.093 qw(:Status ); +use IO::Compress::Zlib::Constants 2.093 ; -use IO::Uncompress::RawInflate 2.092 ; +use IO::Uncompress::RawInflate 2.093 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $InflateError); -$VERSION = '2.092'; +$VERSION = '2.093'; $InflateError = ''; @ISA = qw(IO::Uncompress::RawInflate Exporter); @@ -284,7 +284,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Uncompress/RawInflate.pm b/lib/IO/Uncompress/RawInflate.pm index b418e2a..2fa3188 100755 --- a/lib/IO/Uncompress/RawInflate.pm +++ b/lib/IO/Uncompress/RawInflate.pm @@ -5,16 +5,16 @@ use strict ; use warnings; use bytes; -use Compress::Raw::Zlib 2.092 ; -use IO::Compress::Base::Common 2.092 qw(:Status ); +use Compress::Raw::Zlib 2.093 ; +use IO::Compress::Base::Common 2.093 qw(:Status ); -use IO::Uncompress::Base 2.092 ; -use IO::Uncompress::Adapter::Inflate 2.092 ; +use IO::Uncompress::Base 2.093 ; +use IO::Uncompress::Adapter::Inflate 2.093 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError); -$VERSION = '2.092'; +$VERSION = '2.093'; $RawInflateError = ''; @ISA = qw(IO::Uncompress::Base Exporter); @@ -432,7 +432,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/lib/IO/Uncompress/Unzip.pm b/lib/IO/Uncompress/Unzip.pm index 738f019..856487f 100644 --- a/lib/IO/Uncompress/Unzip.pm +++ b/lib/IO/Uncompress/Unzip.pm @@ -9,14 +9,14 @@ use warnings; use bytes; use IO::File; -use IO::Uncompress::RawInflate 2.092 ; -use IO::Compress::Base::Common 2.092 qw(:Status ); -use IO::Uncompress::Adapter::Inflate 2.092 ; -use IO::Uncompress::Adapter::Identity 2.092 ; -use IO::Compress::Zlib::Extra 2.092 ; -use IO::Compress::Zip::Constants 2.092 ; +use IO::Uncompress::RawInflate 2.093 ; +use IO::Compress::Base::Common 2.093 qw(:Status ); +use IO::Uncompress::Adapter::Inflate 2.093 ; +use IO::Uncompress::Adapter::Identity 2.093 ; +use IO::Compress::Zlib::Extra 2.093 ; +use IO::Compress::Zip::Constants 2.093 ; -use Compress::Raw::Zlib 2.092 () ; +use Compress::Raw::Zlib 2.093 () ; BEGIN { @@ -34,7 +34,7 @@ require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup); -$VERSION = '2.092'; +$VERSION = '2.093'; $UnzipError = ''; @ISA = qw(IO::Uncompress::RawInflate Exporter); @@ -1136,7 +1136,7 @@ It can take one of the following forms: =item A filename -If the <$input_filename_or_reference> parameter is a simple scalar, it is +If the C<$input_filename_or_reference> parameter is a simple scalar, it is assumed to be a filename. This file will be opened for reading and the input data will be read from it. diff --git a/t/000prereq.t b/t/000prereq.t index 4fdbc6b..9467cd3 100644 --- a/t/000prereq.t +++ b/t/000prereq.t @@ -25,7 +25,7 @@ BEGIN if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 }; - my $VERSION = '2.092'; + my $VERSION = '2.093'; my @NAMES = qw( Compress::Raw::Bzip2 Compress::Raw::Zlib