Skip to content

Commit ece2b3e

Browse files
committed
Update to version 2.087
1 parent 25152f0 commit ece2b3e

32 files changed

+146
-136
lines changed

Diff for: Changes

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
CHANGES
22
-------
33

4+
2.087 10 August 2019
5+
6+
* IO::Uncompress::Unzip
7+
nextStream not updating filehandle correctly
8+
https://github.com/pmqs/IO-Compress/issues/3
9+
25152f04f5b1bd9341502e42a5877c72eac3f291
10+
11+
* Added travis & appveyor files for CI in GitHub
12+
13+
414
2.086 31 March 2019
515

616
* IO::Compress::Zip & IO::Uncompress::Unzip

Diff for: META.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
},
3535
"runtime" : {
3636
"requires" : {
37-
"Compress::Raw::Bzip2" : "2.086",
38-
"Compress::Raw::Zlib" : "2.086",
37+
"Compress::Raw::Bzip2" : "2.087",
38+
"Compress::Raw::Zlib" : "2.087",
3939
"Scalar::Util" : "0"
4040
}
4141
}
@@ -52,6 +52,6 @@
5252
"web" : "https://github.com/pmqs/IO-Compress"
5353
}
5454
},
55-
"version" : "2.086",
55+
"version" : "2.087",
5656
"x_serialization_backend" : "JSON::PP version 2.97001"
5757
}

Diff for: META.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ no_index:
2020
- t
2121
- private
2222
requires:
23-
Compress::Raw::Bzip2: '2.086'
24-
Compress::Raw::Zlib: '2.086'
23+
Compress::Raw::Bzip2: '2.087'
24+
Compress::Raw::Zlib: '2.087'
2525
Scalar::Util: '0'
2626
resources:
2727
bugtracker: https://github.com/pmqs/IO-Compress/issues
2828
homepage: https://github.com/pmqs/IO-Compress
2929
repository: git://github.com/pmqs/IO-Compress.git
30-
version: '2.086'
30+
version: '2.087'
3131
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Diff for: Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use strict ;
44
require 5.006 ;
55

6-
$::VERSION = '2.086' ;
6+
$::VERSION = '2.087' ;
77

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

Diff for: README

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
IO-Compress
33

4-
Version 2.086
4+
Version 2.087
55

6-
31 March 2019
6+
10 August 2019
77

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

92-
$VERSION = "2.086" ;
92+
$VERSION = "2.087" ;
9393

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

Diff for: lib/Compress/Zlib.pm

+6-6
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.086 ;
11-
use Compress::Raw::Zlib 2.086 ;
12-
use IO::Compress::Gzip 2.086 ;
13-
use IO::Uncompress::Gunzip 2.086 ;
10+
use IO::Compress::Base::Common 2.087 ;
11+
use Compress::Raw::Zlib 2.087 ;
12+
use IO::Compress::Gzip 2.087 ;
13+
use IO::Uncompress::Gunzip 2.087 ;
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.086';
20+
$VERSION = '2.087';
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.086 ;
464+
use IO::Compress::Gzip::Constants 2.087 ;
465465

466466
sub memGzip($)
467467
{

Diff for: lib/IO/Compress/Adapter/Bzip2.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.086 qw(:Status);
7+
use IO::Compress::Base::Common 2.087 qw(:Status);
88

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

1111
our ($VERSION);
12-
$VERSION = '2.086';
12+
$VERSION = '2.087';
1313

1414
sub mkCompObject
1515
{

Diff for: lib/IO/Compress/Adapter/Deflate.pm

+3-3
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.086 qw(:Status);
8-
use Compress::Raw::Zlib 2.086 qw( !crc32 !adler32 ) ;
7+
use IO::Compress::Base::Common 2.087 qw(:Status);
8+
use Compress::Raw::Zlib 2.087 qw( !crc32 !adler32 ) ;
99

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

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

Diff for: lib/IO/Compress/Adapter/Identity.pm

+2-2
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.086 qw(:Status);
7+
use IO::Compress::Base::Common 2.087 qw(:Status);
88
our ($VERSION);
99

10-
$VERSION = '2.086';
10+
$VERSION = '2.087';
1111

1212
sub mkCompObject
1313
{

Diff for: lib/IO/Compress/Base.pm

+2-2
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.086 ;
9+
use IO::Compress::Base::Common 2.087 ;
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.086';
23+
$VERSION = '2.087';
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

Diff for: lib/IO/Compress/Base/Common.pm

+1-1
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.086';
14+
$VERSION = '2.087';
1515

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

Diff for: lib/IO/Compress/Bzip2.pm

+5-5
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.086 ;
8+
use IO::Compress::Base 2.087 ;
99

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

1313

1414

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

17-
$VERSION = '2.086';
17+
$VERSION = '2.087';
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.086 qw(:Parse);
54+
use IO::Compress::Base::Common 2.087 qw(:Parse);
5555

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

Diff for: lib/IO/Compress/Deflate.pm

+5-5
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.086 ();
12-
use IO::Compress::Adapter::Deflate 2.086 ;
11+
use IO::Compress::RawDeflate 2.087 ();
12+
use IO::Compress::Adapter::Deflate 2.087 ;
1313

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

1717

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

20-
$VERSION = '2.086';
20+
$VERSION = '2.087';
2121
$DeflateError = '';
2222

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

Diff for: lib/IO/Compress/Gzip.pm

+6-6
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.086 () ;
12-
use IO::Compress::Adapter::Deflate 2.086 ;
11+
use IO::Compress::RawDeflate 2.087 () ;
12+
use IO::Compress::Adapter::Deflate 2.087 ;
1313

14-
use IO::Compress::Base::Common 2.086 qw(:Status );
15-
use IO::Compress::Gzip::Constants 2.086 ;
16-
use IO::Compress::Zlib::Extra 2.086 ;
14+
use IO::Compress::Base::Common 2.087 qw(:Status );
15+
use IO::Compress::Gzip::Constants 2.087 ;
16+
use IO::Compress::Zlib::Extra 2.087 ;
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.086';
28+
$VERSION = '2.087';
2929
$GzipError = '' ;
3030

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

Diff for: lib/IO/Compress/Gzip/Constants.pm

+1-1
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.086';
12+
$VERSION = '2.087';
1313

1414
@ISA = qw(Exporter);
1515

Diff for: lib/IO/Compress/RawDeflate.pm

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ use strict ;
66
use warnings;
77
use bytes;
88

9-
use IO::Compress::Base 2.086 ;
10-
use IO::Compress::Base::Common 2.086 qw(:Status );
11-
use IO::Compress::Adapter::Deflate 2.086 ;
9+
use IO::Compress::Base 2.087 ;
10+
use IO::Compress::Base::Common 2.087 qw(:Status );
11+
use IO::Compress::Adapter::Deflate 2.087 ;
1212

1313
require Exporter ;
1414

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

17-
$VERSION = '2.086';
17+
$VERSION = '2.087';
1818
$RawDeflateError = '';
1919

2020
@ISA = qw(IO::Compress::Base Exporter);
@@ -116,8 +116,8 @@ sub getExtraParams
116116
return getZlibParams();
117117
}
118118

119-
use IO::Compress::Base::Common 2.086 qw(:Parse);
120-
use Compress::Raw::Zlib 2.086 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
119+
use IO::Compress::Base::Common 2.087 qw(:Parse);
120+
use Compress::Raw::Zlib 2.087 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
121121
our %PARAMS = (
122122
#'method' => [IO::Compress::Base::Common::Parse_unsigned, Z_DEFLATED],
123123
'level' => [IO::Compress::Base::Common::Parse_signed, Z_DEFAULT_COMPRESSION],

Diff for: lib/IO/Compress/Zip.pm

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

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

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

17-
use Compress::Raw::Zlib 2.086 ();
17+
use Compress::Raw::Zlib 2.087 ();
1818

1919
BEGIN
2020
{
2121
eval { require IO::Compress::Adapter::Bzip2 ;
22-
import IO::Compress::Adapter::Bzip2 2.086 ;
22+
import IO::Compress::Adapter::Bzip2 2.087 ;
2323
require IO::Compress::Bzip2 ;
24-
import IO::Compress::Bzip2 2.086 ;
24+
import IO::Compress::Bzip2 2.087 ;
2525
} ;
2626

2727
eval { require IO::Compress::Adapter::Lzma ;
28-
import IO::Compress::Adapter::Lzma 2.086 ;
28+
import IO::Compress::Adapter::Lzma 2.087 ;
2929
require IO::Compress::Lzma ;
30-
import IO::Compress::Lzma 2.086 ;
30+
import IO::Compress::Lzma 2.087 ;
3131
} ;
3232
}
3333

@@ -36,7 +36,7 @@ require Exporter ;
3636

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

39-
$VERSION = '2.086';
39+
$VERSION = '2.087';
4040
$ZipError = '';
4141

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

Diff for: lib/IO/Compress/Zip/Constants.pm

+1-1
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.086';
10+
$VERSION = '2.087';
1111

1212
@ISA = qw(Exporter);
1313

Diff for: lib/IO/Compress/Zlib/Constants.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require Exporter;
99

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

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

1414
@ISA = qw(Exporter);
1515

Diff for: lib/IO/Compress/Zlib/Extra.pm

+2-2
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.086';
11+
$VERSION = '2.087';
1212

13-
use IO::Compress::Gzip::Constants 2.086 ;
13+
use IO::Compress::Gzip::Constants 2.087 ;
1414

1515
sub ExtraFieldError
1616
{

0 commit comments

Comments
 (0)