Skip to content

Commit 1276339

Browse files
committed
version 2.211
1 parent 9c54388 commit 1276339

32 files changed

+148
-147
lines changed

META.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
},
3535
"runtime" : {
3636
"requires" : {
37-
"Compress::Raw::Bzip2" : "2.207",
38-
"Compress::Raw::Zlib" : "2.207",
37+
"Compress::Raw::Bzip2" : "2.211",
38+
"Compress::Raw::Zlib" : "2.211",
3939
"Scalar::Util" : "0",
4040
"Encode" : "0",
4141
"Time::Local" : "0"
@@ -54,6 +54,6 @@
5454
"web" : "https://github.com/pmqs/IO-Compress"
5555
}
5656
},
57-
"version" : "2.208",
57+
"version" : "2.211",
5858
"x_serialization_backend" : "JSON::PP version 2.97001"
5959
}

META.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ no_index:
2020
- t
2121
- private
2222
requires:
23-
Compress::Raw::Bzip2: '2.207'
24-
Compress::Raw::Zlib: '2.207'
23+
Compress::Raw::Bzip2: '2.211'
24+
Compress::Raw::Zlib: '2.211'
2525
Scalar::Util: '0'
2626
Encode: '0'
2727
Time::Local: '0'
2828
resources:
2929
bugtracker: https://github.com/pmqs/IO-Compress/issues
3030
homepage: https://github.com/pmqs/IO-Compress
3131
repository: git://github.com/pmqs/IO-Compress.git
32-
version: '2.208'
32+
version: '2.211'
3333
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
use strict ;
44
require 5.006 ;
55

6-
$::VERSION = '2.208' ;
7-
$::DEP_VERSION = '2.207';
6+
$::VERSION = '2.211' ;
7+
$::DEP_VERSION = '2.211';
88

99
use lib '.';
1010
use private::MakeUtil;

README

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11

2+
23
IO-Compress
34

4-
Version 2.208
5+
Version 2.211
56

6-
31 March 2024
7+
6 April 2024
78

89
Copyright (c) 1995-2024 Paul Marquess. All rights reserved.
910
This program is free software; you can redistribute it
@@ -111,7 +112,7 @@ To help me help you, I need all of the following information:
111112
If you haven't installed IO-Compress then search IO::Compress::Gzip.pm
112113
for a line like this:
113114

114-
$VERSION = "2.208" ;
115+
$VERSION = "2.211" ;
115116

116117
2. If you are having problems building IO-Compress, send me a
117118
complete log of what happened. Start by unpacking the IO-Compress

lib/Compress/Zlib.pm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ use Carp ;
77
use IO::Handle ;
88
use Scalar::Util qw(dualvar);
99

10-
use IO::Compress::Base::Common 2.208 ;
11-
use Compress::Raw::Zlib 2.207 ;
12-
use IO::Compress::Gzip 2.208 ;
13-
use IO::Uncompress::Gunzip 2.208 ;
10+
use IO::Compress::Base::Common 2.211 ;
11+
use Compress::Raw::Zlib 2.211 ;
12+
use IO::Compress::Gzip 2.211 ;
13+
use IO::Uncompress::Gunzip 2.211 ;
1414

1515
use strict ;
1616
use warnings ;
1717
use bytes ;
1818
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
1919

20-
$VERSION = '2.208';
20+
$VERSION = '2.211';
2121
$XS_VERSION = $VERSION;
2222
$VERSION = eval $VERSION;
2323

@@ -461,7 +461,7 @@ sub inflate
461461

462462
package Compress::Zlib ;
463463

464-
use IO::Compress::Gzip::Constants 2.208 ;
464+
use IO::Compress::Gzip::Constants 2.211 ;
465465

466466
sub memGzip($)
467467
{

lib/IO/Compress/Adapter/Bzip2.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ use strict;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.208 qw(:Status);
7+
use IO::Compress::Base::Common 2.211 qw(:Status);
88

9-
use Compress::Raw::Bzip2 2.207 ;
9+
use Compress::Raw::Bzip2 2.211 ;
1010

1111
our ($VERSION);
12-
$VERSION = '2.208';
12+
$VERSION = '2.211';
1313

1414
sub mkCompObject
1515
{

lib/IO/Compress/Adapter/Deflate.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ use strict;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.208 qw(:Status);
8-
use Compress::Raw::Zlib 2.207 qw( !crc32 !adler32 ) ;
7+
use IO::Compress::Base::Common 2.211 qw(:Status);
8+
use Compress::Raw::Zlib 2.211 qw( !crc32 !adler32 ) ;
99

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

13-
$VERSION = '2.208';
13+
$VERSION = '2.211';
1414
@ISA = qw(Exporter);
1515
@EXPORT_OK = @Compress::Raw::Zlib::DEFLATE_CONSTANTS;
1616
%EXPORT_TAGS = %Compress::Raw::Zlib::DEFLATE_CONSTANTS;

lib/IO/Compress/Adapter/Identity.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ use strict;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.208 qw(:Status);
7+
use IO::Compress::Base::Common 2.211 qw(:Status);
88
our ($VERSION);
99

10-
$VERSION = '2.208';
10+
$VERSION = '2.211';
1111

1212
sub mkCompObject
1313
{

lib/IO/Compress/Base.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require 5.006 ;
66
use strict ;
77
use warnings;
88

9-
use IO::Compress::Base::Common 2.208 ;
9+
use IO::Compress::Base::Common 2.211 ;
1010

1111
use IO::File (); ;
1212
use Scalar::Util ();
@@ -20,7 +20,7 @@ use Symbol();
2020
our (@ISA, $VERSION);
2121
@ISA = qw(IO::File Exporter);
2222

23-
$VERSION = '2.208';
23+
$VERSION = '2.211';
2424

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

lib/IO/Compress/Base/Common.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use File::GlobMapper;
1111
require Exporter;
1212
our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE);
1313
@ISA = qw(Exporter);
14-
$VERSION = '2.208';
14+
$VERSION = '2.211';
1515

1616
@EXPORT = qw( isaFilehandle isaFilename isaScalar
1717
whatIsInput whatIsOutput

lib/IO/Compress/Bzip2.pm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ use warnings;
55
use bytes;
66
require Exporter ;
77

8-
use IO::Compress::Base 2.208 ;
8+
use IO::Compress::Base 2.211 ;
99

10-
use IO::Compress::Base::Common 2.208 qw();
11-
use IO::Compress::Adapter::Bzip2 2.208 ;
10+
use IO::Compress::Base::Common 2.211 qw();
11+
use IO::Compress::Adapter::Bzip2 2.211 ;
1212

1313

1414

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

17-
$VERSION = '2.208';
17+
$VERSION = '2.211';
1818
$Bzip2Error = '';
1919

2020
@ISA = qw(IO::Compress::Base Exporter);
@@ -51,7 +51,7 @@ sub getExtraParams
5151
{
5252
my $self = shift ;
5353

54-
use IO::Compress::Base::Common 2.208 qw(:Parse);
54+
use IO::Compress::Base::Common 2.211 qw(:Parse);
5555

5656
return (
5757
'blocksize100k' => [IO::Compress::Base::Common::Parse_unsigned, 1],

lib/IO/Compress/Deflate.pm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ use bytes;
88

99
require Exporter ;
1010

11-
use IO::Compress::RawDeflate 2.208 ();
12-
use IO::Compress::Adapter::Deflate 2.208 ;
11+
use IO::Compress::RawDeflate 2.211 ();
12+
use IO::Compress::Adapter::Deflate 2.211 ;
1313

14-
use IO::Compress::Zlib::Constants 2.208 ;
15-
use IO::Compress::Base::Common 2.208 qw();
14+
use IO::Compress::Zlib::Constants 2.211 ;
15+
use IO::Compress::Base::Common 2.211 qw();
1616

1717

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

20-
$VERSION = '2.208';
20+
$VERSION = '2.211';
2121
$DeflateError = '';
2222

2323
@ISA = qw(IO::Compress::RawDeflate Exporter);

lib/IO/Compress/Gzip.pm

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ use bytes;
88

99
require Exporter ;
1010

11-
use IO::Compress::RawDeflate 2.208 () ;
12-
use IO::Compress::Adapter::Deflate 2.208 ;
11+
use IO::Compress::RawDeflate 2.211 () ;
12+
use IO::Compress::Adapter::Deflate 2.211 ;
1313

14-
use IO::Compress::Base::Common 2.208 qw(:Status );
15-
use IO::Compress::Gzip::Constants 2.208 ;
16-
use IO::Compress::Zlib::Extra 2.208 ;
14+
use IO::Compress::Base::Common 2.211 qw(:Status );
15+
use IO::Compress::Gzip::Constants 2.211 ;
16+
use IO::Compress::Zlib::Extra 2.211 ;
1717

1818
BEGIN
1919
{
@@ -25,7 +25,7 @@ BEGIN
2525

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

28-
$VERSION = '2.208';
28+
$VERSION = '2.211';
2929
$GzipError = '' ;
3030

3131
@ISA = qw(IO::Compress::RawDeflate Exporter);

lib/IO/Compress/Gzip/Constants.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require Exporter;
99
our ($VERSION, @ISA, @EXPORT, %GZIP_OS_Names);
1010
our ($GZIP_FNAME_INVALID_CHAR_RE, $GZIP_FCOMMENT_INVALID_CHAR_RE);
1111

12-
$VERSION = '2.208';
12+
$VERSION = '2.211';
1313

1414
@ISA = qw(Exporter);
1515

lib/IO/Compress/RawDeflate.pm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ use strict ;
66
use warnings;
77
use bytes;
88

9-
use IO::Compress::Base 2.208 ;
10-
use IO::Compress::Base::Common 2.208 qw(:Status :Parse);
11-
use IO::Compress::Adapter::Deflate 2.208 ;
12-
use Compress::Raw::Zlib 2.207 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
9+
use IO::Compress::Base 2.211 ;
10+
use IO::Compress::Base::Common 2.211 qw(:Status :Parse);
11+
use IO::Compress::Adapter::Deflate 2.211 ;
12+
use Compress::Raw::Zlib 2.211 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
1313

1414
require Exporter ;
1515

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

18-
$VERSION = '2.208';
18+
$VERSION = '2.211';
1919
$RawDeflateError = '';
2020

2121
@ISA = qw(IO::Compress::Base Exporter);

lib/IO/Compress/Zip.pm

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,41 @@ use strict ;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.208 qw(:Status );
8-
use IO::Compress::RawDeflate 2.208 ();
9-
use IO::Compress::Adapter::Deflate 2.208 ;
10-
use IO::Compress::Adapter::Identity 2.208 ;
11-
use IO::Compress::Zlib::Extra 2.208 ;
12-
use IO::Compress::Zip::Constants 2.208 ;
7+
use IO::Compress::Base::Common 2.211 qw(:Status );
8+
use IO::Compress::RawDeflate 2.211 ();
9+
use IO::Compress::Adapter::Deflate 2.211 ;
10+
use IO::Compress::Adapter::Identity 2.211 ;
11+
use IO::Compress::Zlib::Extra 2.211 ;
12+
use IO::Compress::Zip::Constants 2.211 ;
1313

1414
use File::Spec();
1515
use Config;
1616

17-
use Compress::Raw::Zlib 2.207 ();
17+
use Compress::Raw::Zlib 2.211 ();
1818

1919
BEGIN
2020
{
2121
eval { require IO::Compress::Adapter::Bzip2 ;
22-
IO::Compress::Adapter::Bzip2->VERSION( 2.208 );
22+
IO::Compress::Adapter::Bzip2->VERSION( 2.211 );
2323
require IO::Compress::Bzip2 ;
24-
IO::Compress::Bzip2->VERSION( 2.208 );
24+
IO::Compress::Bzip2->VERSION( 2.211 );
2525
} ;
2626

2727
eval { require IO::Compress::Adapter::Lzma ;
28-
IO::Compress::Adapter::Lzma->VERSION( 2.208 );
28+
IO::Compress::Adapter::Lzma->VERSION( 2.211 );
2929
require IO::Compress::Lzma ;
30-
IO::Compress::Lzma->VERSION( 2.208 );
30+
IO::Compress::Lzma->VERSION( 2.211 );
3131
} ;
3232

3333
eval { require IO::Compress::Adapter::Xz ;
34-
IO::Compress::Adapter::Xz->VERSION( 2.208 );
34+
IO::Compress::Adapter::Xz->VERSION( 2.211 );
3535
require IO::Compress::Xz ;
36-
IO::Compress::Xz->VERSION( 2.208 );
36+
IO::Compress::Xz->VERSION( 2.211 );
3737
} ;
3838
eval { require IO::Compress::Adapter::Zstd ;
39-
IO::Compress::Adapter::Zstd->VERSION( 2.208 );
39+
IO::Compress::Adapter::Zstd->VERSION( 2.211 );
4040
require IO::Compress::Zstd ;
41-
IO::Compress::Zstd->VERSION( 2.208 );
41+
IO::Compress::Zstd->VERSION( 2.211 );
4242
} ;
4343
}
4444

@@ -47,7 +47,7 @@ require Exporter ;
4747

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

50-
$VERSION = '2.208';
50+
$VERSION = '2.211';
5151
$ZipError = '';
5252

5353
@ISA = qw(IO::Compress::RawDeflate Exporter);

lib/IO/Compress/Zip/Constants.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require Exporter;
77

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

10-
$VERSION = '2.208';
10+
$VERSION = '2.211';
1111

1212
@ISA = qw(Exporter);
1313

lib/IO/Compress/Zlib/Constants.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require Exporter;
99

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

12-
$VERSION = '2.208';
12+
$VERSION = '2.211';
1313

1414
@ISA = qw(Exporter);
1515

lib/IO/Compress/Zlib/Extra.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ use bytes;
88

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

11-
$VERSION = '2.208';
11+
$VERSION = '2.211';
1212

13-
use IO::Compress::Gzip::Constants 2.208 ;
13+
use IO::Compress::Gzip::Constants 2.211 ;
1414

1515
sub ExtraFieldError
1616
{

lib/IO/Uncompress/Adapter/Bunzip2.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ use strict;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.208 qw(:Status);
7+
use IO::Compress::Base::Common 2.211 qw(:Status);
88

9-
use Compress::Raw::Bzip2 2.207 ;
9+
use Compress::Raw::Bzip2 2.211 ;
1010

1111
our ($VERSION, @ISA);
12-
$VERSION = '2.208';
12+
$VERSION = '2.211';
1313

1414
sub mkUncompObject
1515
{

0 commit comments

Comments
 (0)