Skip to content

Commit 373e949

Browse files
committed
Update to 2.088
1 parent 3b09da9 commit 373e949

File tree

9 files changed

+37
-37
lines changed

9 files changed

+37
-37
lines changed

lib/IO/Uncompress/Adapter/Bunzip2.pm

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

9-
use Compress::Raw::Bzip2 2.087 ;
9+
use Compress::Raw::Bzip2 2.088 ;
1010

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

1414
sub mkUncompObject
1515
{

lib/IO/Uncompress/Adapter/Identity.pm

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ use warnings;
44
use strict;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.087 qw(:Status);
7+
use IO::Compress::Base::Common 2.088 qw(:Status);
88
use IO::Compress::Zip::Constants ;
99

1010
our ($VERSION);
1111

12-
$VERSION = '2.087';
12+
$VERSION = '2.088';
1313

14-
use Compress::Raw::Zlib 2.087 ();
14+
use Compress::Raw::Zlib 2.088 ();
1515

1616
sub mkUncompObject
1717
{

lib/IO/Uncompress/Adapter/Inflate.pm

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ use strict;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.087 qw(:Status);
8-
use Compress::Raw::Zlib 2.087 qw(Z_OK Z_BUF_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
7+
use IO::Compress::Base::Common 2.088 qw(:Status);
8+
use Compress::Raw::Zlib 2.088 qw(Z_OK Z_BUF_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
99

1010
our ($VERSION);
11-
$VERSION = '2.087';
11+
$VERSION = '2.088';
1212

1313

1414

lib/IO/Uncompress/Bunzip2.pm

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ use strict ;
44
use warnings;
55
use bytes;
66

7-
use IO::Compress::Base::Common 2.087 qw(:Status );
7+
use IO::Compress::Base::Common 2.088 qw(:Status );
88

9-
use IO::Uncompress::Base 2.087 ;
10-
use IO::Uncompress::Adapter::Bunzip2 2.087 ;
9+
use IO::Uncompress::Base 2.088 ;
10+
use IO::Uncompress::Adapter::Bunzip2 2.088 ;
1111

1212
require Exporter ;
1313
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bunzip2Error);
1414

15-
$VERSION = '2.087';
15+
$VERSION = '2.088';
1616
$Bunzip2Error = '';
1717

1818
@ISA = qw(IO::Uncompress::Base Exporter);

lib/IO/Uncompress/Gunzip.pm

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ use strict ;
99
use warnings;
1010
use bytes;
1111

12-
use IO::Uncompress::RawInflate 2.087 ;
12+
use IO::Uncompress::RawInflate 2.088 ;
1313

14-
use Compress::Raw::Zlib 2.087 () ;
15-
use IO::Compress::Base::Common 2.087 qw(:Status );
16-
use IO::Compress::Gzip::Constants 2.087 ;
17-
use IO::Compress::Zlib::Extra 2.087 ;
14+
use Compress::Raw::Zlib 2.088 () ;
15+
use IO::Compress::Base::Common 2.088 qw(:Status );
16+
use IO::Compress::Gzip::Constants 2.088 ;
17+
use IO::Compress::Zlib::Extra 2.088 ;
1818

1919
require Exporter ;
2020

@@ -28,7 +28,7 @@ Exporter::export_ok_tags('all');
2828

2929
$GunzipError = '';
3030

31-
$VERSION = '2.087';
31+
$VERSION = '2.088';
3232

3333
sub new
3434
{

lib/IO/Uncompress/Inflate.pm

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ use strict ;
55
use warnings;
66
use bytes;
77

8-
use IO::Compress::Base::Common 2.087 qw(:Status );
9-
use IO::Compress::Zlib::Constants 2.087 ;
8+
use IO::Compress::Base::Common 2.088 qw(:Status );
9+
use IO::Compress::Zlib::Constants 2.088 ;
1010

11-
use IO::Uncompress::RawInflate 2.087 ;
11+
use IO::Uncompress::RawInflate 2.088 ;
1212

1313
require Exporter ;
1414
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $InflateError);
1515

16-
$VERSION = '2.087';
16+
$VERSION = '2.088';
1717
$InflateError = '';
1818

1919
@ISA = qw(IO::Uncompress::RawInflate Exporter);

lib/IO/Uncompress/RawInflate.pm

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ use strict ;
55
use warnings;
66
use bytes;
77

8-
use Compress::Raw::Zlib 2.087 ;
9-
use IO::Compress::Base::Common 2.087 qw(:Status );
8+
use Compress::Raw::Zlib 2.088 ;
9+
use IO::Compress::Base::Common 2.088 qw(:Status );
1010

11-
use IO::Uncompress::Base 2.087 ;
12-
use IO::Uncompress::Adapter::Inflate 2.087 ;
11+
use IO::Uncompress::Base 2.088 ;
12+
use IO::Uncompress::Adapter::Inflate 2.088 ;
1313

1414
require Exporter ;
1515
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError);
1616

17-
$VERSION = '2.087';
17+
$VERSION = '2.088';
1818
$RawInflateError = '';
1919

2020
@ISA = qw(IO::Uncompress::Base Exporter);

lib/IO/Uncompress/Unzip.pm

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ use warnings;
99
use bytes;
1010

1111
use IO::File;
12-
use IO::Uncompress::RawInflate 2.087 ;
13-
use IO::Compress::Base::Common 2.087 qw(:Status );
14-
use IO::Uncompress::Adapter::Inflate 2.087 ;
15-
use IO::Uncompress::Adapter::Identity 2.087 ;
16-
use IO::Compress::Zlib::Extra 2.087 ;
17-
use IO::Compress::Zip::Constants 2.087 ;
12+
use IO::Uncompress::RawInflate 2.088 ;
13+
use IO::Compress::Base::Common 2.088 qw(:Status );
14+
use IO::Uncompress::Adapter::Inflate 2.088 ;
15+
use IO::Uncompress::Adapter::Identity 2.088 ;
16+
use IO::Compress::Zlib::Extra 2.088 ;
17+
use IO::Compress::Zip::Constants 2.088 ;
1818

19-
use Compress::Raw::Zlib 2.087 () ;
19+
use Compress::Raw::Zlib 2.088 () ;
2020

2121
BEGIN
2222
{
@@ -34,7 +34,7 @@ require Exporter ;
3434

3535
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup);
3636

37-
$VERSION = '2.087';
37+
$VERSION = '2.088';
3838
$UnzipError = '';
3939

4040
@ISA = qw(IO::Uncompress::RawInflate Exporter);

t/000prereq.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ BEGIN
2525
if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };
2626

2727

28-
my $VERSION = '2.087';
28+
my $VERSION = '2.088';
2929
my @NAMES = qw(
3030
Compress::Raw::Bzip2
3131
Compress::Raw::Zlib

0 commit comments

Comments
 (0)