Skip to content

Commit

Permalink
2.101
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Feb 20, 2021
1 parent 014c6fc commit 5bf81f0
Show file tree
Hide file tree
Showing 32 changed files with 144 additions and 140 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGES
-------

2.101 20 February 2021

* fix version numbers in meta files

2.100 7 January 2021

* bin/zipdetails version 2.02
Expand Down
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
},
"runtime" : {
"requires" : {
"Compress::Raw::Bzip2" : "2.096",
"Compress::Raw::Zlib" : "2.096",
"Compress::Raw::Bzip2" : "2.101",
"Compress::Raw::Zlib" : "2.101",
"Scalar::Util" : "0",
"Encode" : "0"
}
Expand All @@ -53,6 +53,6 @@
"web" : "https://github.com/pmqs/IO-Compress"
}
},
"version" : "2.096",
"version" : "2.101",
"x_serialization_backend" : "JSON::PP version 2.97001"
}
6 changes: 3 additions & 3 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ no_index:
- t
- private
requires:
Compress::Raw::Bzip2: '2.096'
Compress::Raw::Zlib: '2.096'
Compress::Raw::Bzip2: '2.101'
Compress::Raw::Zlib: '2.101'
Scalar::Util: '0'
Encode: '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.096'
version: '2.101'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use strict ;
require 5.006 ;

$::VERSION = '2.100' ;
$::VERSION = '2.101' ;

use lib '.';
use private::MakeUtil;
Expand Down
8 changes: 4 additions & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

IO-Compress
IO-Compress

Version 2.100
Version 2.101

7 January 2021
20 Feburary 2021

Copyright (c) 1995-2021 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
Expand Down Expand Up @@ -112,7 +112,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.100" ;
$VERSION = "2.101" ;

2. If you are having problems building IO-Compress, send me a
complete log of what happened. Start by unpacking the IO-Compress
Expand Down
12 changes: 6 additions & 6 deletions lib/Compress/Zlib.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ use Carp ;
use IO::Handle ;
use Scalar::Util qw(dualvar);

use IO::Compress::Base::Common 2.100 ;
use Compress::Raw::Zlib 2.100 ;
use IO::Compress::Gzip 2.100 ;
use IO::Uncompress::Gunzip 2.100 ;
use IO::Compress::Base::Common 2.101 ;
use Compress::Raw::Zlib 2.101 ;
use IO::Compress::Gzip 2.101 ;
use IO::Uncompress::Gunzip 2.101 ;

use strict ;
use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);

$VERSION = '2.100';
$VERSION = '2.101';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;

Expand Down Expand Up @@ -461,7 +461,7 @@ sub inflate

package Compress::Zlib ;

use IO::Compress::Gzip::Constants 2.100 ;
use IO::Compress::Gzip::Constants 2.101 ;

sub memGzip($)
{
Expand Down
6 changes: 3 additions & 3 deletions lib/IO/Compress/Adapter/Bzip2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ use strict;
use warnings;
use bytes;

use IO::Compress::Base::Common 2.100 qw(:Status);
use IO::Compress::Base::Common 2.101 qw(:Status);

use Compress::Raw::Bzip2 2.100 ;
use Compress::Raw::Bzip2 2.101 ;

our ($VERSION);
$VERSION = '2.100';
$VERSION = '2.101';

sub mkCompObject
{
Expand Down
6 changes: 3 additions & 3 deletions lib/IO/Compress/Adapter/Deflate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ use strict;
use warnings;
use bytes;

use IO::Compress::Base::Common 2.100 qw(:Status);
use Compress::Raw::Zlib 2.100 qw( !crc32 !adler32 ) ;
use IO::Compress::Base::Common 2.101 qw(:Status);
use Compress::Raw::Zlib 2.101 qw( !crc32 !adler32 ) ;

require Exporter;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, @EXPORT, %DEFLATE_CONSTANTS);

$VERSION = '2.100';
$VERSION = '2.101';
@ISA = qw(Exporter);
@EXPORT_OK = @Compress::Raw::Zlib::DEFLATE_CONSTANTS;
%EXPORT_TAGS = %Compress::Raw::Zlib::DEFLATE_CONSTANTS;
Expand Down
4 changes: 2 additions & 2 deletions lib/IO/Compress/Adapter/Identity.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ use strict;
use warnings;
use bytes;

use IO::Compress::Base::Common 2.100 qw(:Status);
use IO::Compress::Base::Common 2.101 qw(:Status);
our ($VERSION);

$VERSION = '2.100';
$VERSION = '2.101';

sub mkCompObject
{
Expand Down
4 changes: 2 additions & 2 deletions lib/IO/Compress/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 5.006 ;
use strict ;
use warnings;

use IO::Compress::Base::Common 2.100 ;
use IO::Compress::Base::Common 2.101 ;

use IO::File (); ;
use Scalar::Util ();
Expand All @@ -20,7 +20,7 @@ use Symbol();
our (@ISA, $VERSION);
@ISA = qw(IO::File Exporter);

$VERSION = '2.100';
$VERSION = '2.101';

#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.

Expand Down
2 changes: 1 addition & 1 deletion lib/IO/Compress/Base/Common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use File::GlobMapper;
require Exporter;
our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE);
@ISA = qw(Exporter);
$VERSION = '2.100';
$VERSION = '2.101';

@EXPORT = qw( isaFilehandle isaFilename isaScalar
whatIsInput whatIsOutput
Expand Down
10 changes: 5 additions & 5 deletions lib/IO/Compress/Bzip2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ use warnings;
use bytes;
require Exporter ;

use IO::Compress::Base 2.100 ;
use IO::Compress::Base 2.101 ;

use IO::Compress::Base::Common 2.100 qw();
use IO::Compress::Adapter::Bzip2 2.100 ;
use IO::Compress::Base::Common 2.101 qw();
use IO::Compress::Adapter::Bzip2 2.101 ;



our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bzip2Error);

$VERSION = '2.100';
$VERSION = '2.101';
$Bzip2Error = '';

@ISA = qw(IO::Compress::Base Exporter);
Expand Down Expand Up @@ -51,7 +51,7 @@ sub getExtraParams
{
my $self = shift ;

use IO::Compress::Base::Common 2.100 qw(:Parse);
use IO::Compress::Base::Common 2.101 qw(:Parse);

return (
'blocksize100k' => [IO::Compress::Base::Common::Parse_unsigned, 1],
Expand Down
10 changes: 5 additions & 5 deletions lib/IO/Compress/Deflate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ use bytes;

require Exporter ;

use IO::Compress::RawDeflate 2.100 ();
use IO::Compress::Adapter::Deflate 2.100 ;
use IO::Compress::RawDeflate 2.101 ();
use IO::Compress::Adapter::Deflate 2.101 ;

use IO::Compress::Zlib::Constants 2.100 ;
use IO::Compress::Base::Common 2.100 qw();
use IO::Compress::Zlib::Constants 2.101 ;
use IO::Compress::Base::Common 2.101 qw();


our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $DeflateError);

$VERSION = '2.100';
$VERSION = '2.101';
$DeflateError = '';

@ISA = qw(IO::Compress::RawDeflate Exporter);
Expand Down
12 changes: 6 additions & 6 deletions lib/IO/Compress/Gzip.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ use bytes;

require Exporter ;

use IO::Compress::RawDeflate 2.100 () ;
use IO::Compress::Adapter::Deflate 2.100 ;
use IO::Compress::RawDeflate 2.101 () ;
use IO::Compress::Adapter::Deflate 2.101 ;

use IO::Compress::Base::Common 2.100 qw(:Status );
use IO::Compress::Gzip::Constants 2.100 ;
use IO::Compress::Zlib::Extra 2.100 ;
use IO::Compress::Base::Common 2.101 qw(:Status );
use IO::Compress::Gzip::Constants 2.101 ;
use IO::Compress::Zlib::Extra 2.101 ;

BEGIN
{
Expand All @@ -25,7 +25,7 @@ BEGIN

our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $GzipError);

$VERSION = '2.100';
$VERSION = '2.101';
$GzipError = '' ;

@ISA = qw(IO::Compress::RawDeflate Exporter);
Expand Down
2 changes: 1 addition & 1 deletion lib/IO/Compress/Gzip/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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.100';
$VERSION = '2.101';

@ISA = qw(Exporter);

Expand Down
10 changes: 5 additions & 5 deletions lib/IO/Compress/RawDeflate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ use strict ;
use warnings;
use bytes;

use IO::Compress::Base 2.100 ;
use IO::Compress::Base::Common 2.100 qw(:Status :Parse);
use IO::Compress::Adapter::Deflate 2.100 ;
use Compress::Raw::Zlib 2.100 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
use IO::Compress::Base 2.101 ;
use IO::Compress::Base::Common 2.101 qw(:Status :Parse);
use IO::Compress::Adapter::Deflate 2.101 ;
use Compress::Raw::Zlib 2.101 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);

require Exporter ;

our ($VERSION, @ISA, @EXPORT_OK, %DEFLATE_CONSTANTS, %EXPORT_TAGS, $RawDeflateError);

$VERSION = '2.100';
$VERSION = '2.101';
$RawDeflateError = '';

@ISA = qw(IO::Compress::Base Exporter);
Expand Down
32 changes: 16 additions & 16 deletions lib/IO/Compress/Zip.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,41 +4,41 @@ use strict ;
use warnings;
use bytes;

use IO::Compress::Base::Common 2.100 qw(:Status );
use IO::Compress::RawDeflate 2.100 ();
use IO::Compress::Adapter::Deflate 2.100 ;
use IO::Compress::Adapter::Identity 2.100 ;
use IO::Compress::Zlib::Extra 2.100 ;
use IO::Compress::Zip::Constants 2.100 ;
use IO::Compress::Base::Common 2.101 qw(:Status );
use IO::Compress::RawDeflate 2.101 ();
use IO::Compress::Adapter::Deflate 2.101 ;
use IO::Compress::Adapter::Identity 2.101 ;
use IO::Compress::Zlib::Extra 2.101 ;
use IO::Compress::Zip::Constants 2.101 ;

use File::Spec();
use Config;

use Compress::Raw::Zlib 2.100 ();
use Compress::Raw::Zlib 2.101 ();

BEGIN
{
eval { require IO::Compress::Adapter::Bzip2 ;
IO::Compress::Adapter::Bzip2->import( 2.096 );
IO::Compress::Adapter::Bzip2->import( 2.101 );
require IO::Compress::Bzip2 ;
IO::Compress::Bzip2->import( 2.096 );
IO::Compress::Bzip2->import( 2.101 );
} ;

eval { require IO::Compress::Adapter::Lzma ;
IO::Compress::Adapter::Lzma->import( 2.096 );
IO::Compress::Adapter::Lzma->import( 2.101 );
require IO::Compress::Lzma ;
IO::Compress::Lzma->import( 2.096 );
IO::Compress::Lzma->import( 2.101 );
} ;

eval { require IO::Compress::Adapter::Xz ;
IO::Compress::Adapter::Xz->import( 2.096 );
IO::Compress::Adapter::Xz->import( 2.101 );
require IO::Compress::Xz ;
IO::Compress::Xz->import( 2.096 );
IO::Compress::Xz->import( 2.101 );
} ;
eval { require IO::Compress::Adapter::Zstd ;
IO::Compress::Adapter::Zstd->import( 2.096 );
IO::Compress::Adapter::Zstd->import( 2.101 );
require IO::Compress::Zstd ;
IO::Compress::Zstd->import( 2.096 );
IO::Compress::Zstd->import( 2.101 );
} ;
}

Expand All @@ -47,7 +47,7 @@ require Exporter ;

our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $ZipError);

$VERSION = '2.100';
$VERSION = '2.101';
$ZipError = '';

@ISA = qw(IO::Compress::RawDeflate Exporter);
Expand Down
2 changes: 1 addition & 1 deletion lib/IO/Compress/Zip/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require Exporter;

our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS);

$VERSION = '2.100';
$VERSION = '2.101';

@ISA = qw(Exporter);

Expand Down
2 changes: 1 addition & 1 deletion lib/IO/Compress/Zlib/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require Exporter;

our ($VERSION, @ISA, @EXPORT);

$VERSION = '2.100';
$VERSION = '2.101';

@ISA = qw(Exporter);

Expand Down
4 changes: 2 additions & 2 deletions lib/IO/Compress/Zlib/Extra.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ use bytes;

our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS);

$VERSION = '2.100';
$VERSION = '2.101';

use IO::Compress::Gzip::Constants 2.100 ;
use IO::Compress::Gzip::Constants 2.101 ;

sub ExtraFieldError
{
Expand Down
Loading

0 comments on commit 5bf81f0

Please sign in to comment.