Skip to content

Commit 6239166

Browse files
committed
Version 2.204
1 parent 6fae66f commit 6239166

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

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.201' ;
6+
$::VERSION = '2.204' ;
77

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

Diff for: README

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
IO-Compress-Lzf
33

4-
Version 2.201
4+
Version 2.204
55

6-
25 June 2022
6+
3 April 2022
77

8-
Copyright (c) 2005-2022 Paul Marquess. All rights reserved.
8+
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
99
This program is free software; you can redistribute it
1010
and/or modify it under the same terms as Perl itself.
1111

@@ -85,7 +85,7 @@ To help me help you, I need all of the following information:
8585
If you haven't installed IO-Compress-Lzf then search IO::Compress::Lzf.pm
8686
for a line like this:
8787

88-
$VERSION = "2.201" ;
88+
$VERSION = "2.204" ;
8989

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

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

+2-2
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.201 qw(:Status);
7+
use IO::Compress::Base::Common 2.204 qw(:Status);
88
use Compress::LZF ;
99

1010
our ($VERSION);
11-
$VERSION = '2.201';
11+
$VERSION = '2.204';
1212

1313
use constant SIGNATURE => 'ZV';
1414

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

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

8-
use IO::Compress::Base 2.201 ;
8+
use IO::Compress::Base 2.204 ;
99

10-
use IO::Compress::Base::Common 2.201 qw(createSelfTiedObject);
11-
use IO::Compress::Adapter::Lzf 2.201 ;
10+
use IO::Compress::Base::Common 2.204 qw(createSelfTiedObject);
11+
use IO::Compress::Adapter::Lzf 2.204 ;
1212
#use Compress::Lzf ;
1313

1414
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $LzfError);
1515

16-
$VERSION = '2.201';
16+
$VERSION = '2.204';
1717
$LzfError = '';
1818

1919
@ISA = qw( IO::Compress::Base Exporter );
@@ -764,7 +764,7 @@ See the Changes file.
764764
765765
=head1 COPYRIGHT AND LICENSE
766766
767-
Copyright (c) 2005-2022 Paul Marquess. All rights reserved.
767+
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
768768
769769
This program is free software; you can redistribute it and/or
770770
modify it under the same terms as Perl itself.

Diff for: lib/IO/Uncompress/Adapter/Lzf.pm

+2-2
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.201 qw(:Status);
7+
use IO::Compress::Base::Common 2.204 qw(:Status);
88
use Compress::LZF ;
99

1010
our ($VERSION, @ISA);
11-
$VERSION = '2.201';
11+
$VERSION = '2.204';
1212

1313

1414
sub mkUncompObject

Diff for: lib/IO/Uncompress/UnLzf.pm

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

7-
use IO::Compress::Base::Common 2.201 qw(:Status createSelfTiedObject);
7+
use IO::Compress::Base::Common 2.204 qw(:Status createSelfTiedObject);
88

9-
use IO::Uncompress::Base 2.201 ;
10-
use IO::Uncompress::Adapter::Lzf 2.201 ;
9+
use IO::Uncompress::Base 2.204 ;
10+
use IO::Uncompress::Adapter::Lzf 2.204 ;
1111

1212

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

16-
$VERSION = '2.201';
16+
$VERSION = '2.204';
1717
$UnLzfError = '';
1818

1919
@ISA = qw( IO::Uncompress::Base Exporter );
@@ -973,7 +973,7 @@ See the Changes file.
973973
974974
=head1 COPYRIGHT AND LICENSE
975975
976-
Copyright (c) 2005-2022 Paul Marquess. All rights reserved.
976+
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
977977
978978
This program is free software; you can redistribute it and/or
979979
modify it under the same terms as Perl itself.

Diff for: t/000prereq.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ BEGIN
1919
if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };
2020

2121

22-
my $VERSION = '2.201';
22+
my $VERSION = '2.204';
2323
my @NAMES = qw(
2424
IO::Compress::Base
2525
IO::Uncompress::Base

0 commit comments

Comments
 (0)