Skip to content

Commit 245a681

Browse files
committed
Version 2.221
1 parent 1da3c5f commit 245a681

33 files changed

Lines changed: 107 additions & 107 deletions

META.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@
5454
"web" : "https://github.com/pmqs/IO-Compress"
5555
}
5656
},
57-
"version" : "2.220",
57+
"version" : "2.221",
5858
"x_serialization_backend" : "JSON::PP version 2.97001"
5959
}

META.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ 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.220'
32+
version: '2.221'
3333
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use strict ;
44
require 5.006 ;
55

6-
$::VERSION = '2.220' ;
6+
$::VERSION = '2.221' ;
77
$::DEP_VERSION = '2.218';
88

99
use lib '.';

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.220
4+
Version 2.221
55

6-
16 May 2026
6+
16 June 2026
77

88
Copyright (c) 1995-2026 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.220" ;
114+
$VERSION = "2.221" ;
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: 5 additions & 5 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.220 ;
10+
use IO::Compress::Base::Common 2.221 ;
1111
use Compress::Raw::Zlib 2.218 ;
12-
use IO::Compress::Gzip 2.220 ;
13-
use IO::Uncompress::Gunzip 2.220 ;
12+
use IO::Compress::Gzip 2.221 ;
13+
use IO::Uncompress::Gunzip 2.221 ;
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.220';
20+
$VERSION = '2.221';
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.220 ;
464+
use IO::Compress::Gzip::Constants 2.221 ;
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.220' ;
3+
our $VERSION = '2.221' ;
44

55
=head1 NAME
66

lib/IO/Compress/Adapter/Bzip2.pm

Lines changed: 2 additions & 2 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.220 qw(:Status);
7+
use IO::Compress::Base::Common 2.221 qw(:Status);
88

99
use Compress::Raw::Bzip2 2.218 ;
1010

1111
our ($VERSION);
12-
$VERSION = '2.220';
12+
$VERSION = '2.221';
1313

1414
sub mkCompObject
1515
{

lib/IO/Compress/Adapter/Deflate.pm

Lines changed: 2 additions & 2 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.220 qw(:Status);
7+
use IO::Compress::Base::Common 2.221 qw(:Status);
88
use Compress::Raw::Zlib 2.218 qw( !crc32 !adler32 ) ;
99

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

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

10-
$VERSION = '2.220';
10+
$VERSION = '2.221';
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.220 ;
9+
use IO::Compress::Base::Common 2.221 ;
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.220';
23+
$VERSION = '2.221';
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

0 commit comments

Comments
 (0)