Skip to content

Commit 020520f

Browse files
committed
version 2.213
1 parent 6d7dd85 commit 020520f

33 files changed

+148
-148
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.212",
38-
"Compress::Raw::Zlib" : "2.212",
37+
"Compress::Raw::Bzip2" : "2.213",
38+
"Compress::Raw::Zlib" : "2.213",
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.212",
57+
"version" : "2.213",
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.212'
24-
Compress::Raw::Zlib: '2.212'
23+
Compress::Raw::Bzip2: '2.213'
24+
Compress::Raw::Zlib: '2.213'
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.212'
32+
version: '2.213'
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.212' ;
7-
$::DEP_VERSION = '2.212';
6+
$::VERSION = '2.213' ;
7+
$::DEP_VERSION = '2.213';
88

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

README

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

22
IO-Compress
33

4-
Version 2.212
4+
Version 2.213
55

6-
27 April 2024
6+
28 August 2024
77

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

114-
$VERSION = "2.212" ;
114+
$VERSION = "2.213" ;
115115

116116
2. If you are having problems building IO-Compress, send me a
117117
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.212 ;
11-
use Compress::Raw::Zlib 2.212 ;
12-
use IO::Compress::Gzip 2.212 ;
13-
use IO::Uncompress::Gunzip 2.212 ;
10+
use IO::Compress::Base::Common 2.213 ;
11+
use Compress::Raw::Zlib 2.213 ;
12+
use IO::Compress::Gzip 2.213 ;
13+
use IO::Uncompress::Gunzip 2.213 ;
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.212';
20+
$VERSION = '2.213';
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.212 ;
464+
use IO::Compress::Gzip::Constants 2.213 ;
465465

466466
sub memGzip($)
467467
{

lib/IO/Compress.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package IO::Compress;
22

3-
our $VERSION = '2.212' ;
3+
our $VERSION = '2.213' ;
44

55
=head1 NAME
66

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.212 qw(:Status);
7+
use IO::Compress::Base::Common 2.213 qw(:Status);
88

9-
use Compress::Raw::Bzip2 2.212 ;
9+
use Compress::Raw::Bzip2 2.213 ;
1010

1111
our ($VERSION);
12-
$VERSION = '2.212';
12+
$VERSION = '2.213';
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.212 qw(:Status);
8-
use Compress::Raw::Zlib 2.212 qw( !crc32 !adler32 ) ;
7+
use IO::Compress::Base::Common 2.213 qw(:Status);
8+
use Compress::Raw::Zlib 2.213 qw( !crc32 !adler32 ) ;
99

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

13-
$VERSION = '2.212';
13+
$VERSION = '2.213';
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.212 qw(:Status);
7+
use IO::Compress::Base::Common 2.213 qw(:Status);
88
our ($VERSION);
99

10-
$VERSION = '2.212';
10+
$VERSION = '2.213';
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.212 ;
9+
use IO::Compress::Base::Common 2.213 ;
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.212';
23+
$VERSION = '2.213';
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.212';
14+
$VERSION = '2.213';
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.212 ;
8+
use IO::Compress::Base 2.213 ;
99

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

1313

1414

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

17-
$VERSION = '2.212';
17+
$VERSION = '2.213';
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.212 qw(:Parse);
54+
use IO::Compress::Base::Common 2.213 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.212 ();
12-
use IO::Compress::Adapter::Deflate 2.212 ;
11+
use IO::Compress::RawDeflate 2.213 ();
12+
use IO::Compress::Adapter::Deflate 2.213 ;
1313

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

1717

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

20-
$VERSION = '2.212';
20+
$VERSION = '2.213';
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.212 () ;
12-
use IO::Compress::Adapter::Deflate 2.212 ;
11+
use IO::Compress::RawDeflate 2.213 () ;
12+
use IO::Compress::Adapter::Deflate 2.213 ;
1313

14-
use IO::Compress::Base::Common 2.212 qw(:Status );
15-
use IO::Compress::Gzip::Constants 2.212 ;
16-
use IO::Compress::Zlib::Extra 2.212 ;
14+
use IO::Compress::Base::Common 2.213 qw(:Status );
15+
use IO::Compress::Gzip::Constants 2.213 ;
16+
use IO::Compress::Zlib::Extra 2.213 ;
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.212';
28+
$VERSION = '2.213';
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.212';
12+
$VERSION = '2.213';
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.212 ;
10-
use IO::Compress::Base::Common 2.212 qw(:Status :Parse);
11-
use IO::Compress::Adapter::Deflate 2.212 ;
12-
use Compress::Raw::Zlib 2.212 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
9+
use IO::Compress::Base 2.213 ;
10+
use IO::Compress::Base::Common 2.213 qw(:Status :Parse);
11+
use IO::Compress::Adapter::Deflate 2.213 ;
12+
use Compress::Raw::Zlib 2.213 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.212';
18+
$VERSION = '2.213';
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.212 qw(:Status );
8-
use IO::Compress::RawDeflate 2.212 ();
9-
use IO::Compress::Adapter::Deflate 2.212 ;
10-
use IO::Compress::Adapter::Identity 2.212 ;
11-
use IO::Compress::Zlib::Extra 2.212 ;
12-
use IO::Compress::Zip::Constants 2.212 ;
7+
use IO::Compress::Base::Common 2.213 qw(:Status );
8+
use IO::Compress::RawDeflate 2.213 ();
9+
use IO::Compress::Adapter::Deflate 2.213 ;
10+
use IO::Compress::Adapter::Identity 2.213 ;
11+
use IO::Compress::Zlib::Extra 2.213 ;
12+
use IO::Compress::Zip::Constants 2.213 ;
1313

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

17-
use Compress::Raw::Zlib 2.212 ();
17+
use Compress::Raw::Zlib 2.213 ();
1818

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

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

3333
eval { require IO::Compress::Adapter::Xz ;
34-
IO::Compress::Adapter::Xz->VERSION( 2.212 );
34+
IO::Compress::Adapter::Xz->VERSION( 2.213 );
3535
require IO::Compress::Xz ;
36-
IO::Compress::Xz->VERSION( 2.212 );
36+
IO::Compress::Xz->VERSION( 2.213 );
3737
} ;
3838
eval { require IO::Compress::Adapter::Zstd ;
39-
IO::Compress::Adapter::Zstd->VERSION( 2.212 );
39+
IO::Compress::Adapter::Zstd->VERSION( 2.213 );
4040
require IO::Compress::Zstd ;
41-
IO::Compress::Zstd->VERSION( 2.212 );
41+
IO::Compress::Zstd->VERSION( 2.213 );
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.212';
50+
$VERSION = '2.213';
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.212';
10+
$VERSION = '2.213';
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.212';
12+
$VERSION = '2.213';
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.212';
11+
$VERSION = '2.213';
1212

13-
use IO::Compress::Gzip::Constants 2.212 ;
13+
use IO::Compress::Gzip::Constants 2.213 ;
1414

1515
sub ExtraFieldError
1616
{

0 commit comments

Comments
 (0)