Skip to content

Commit

Permalink
version 2.207
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Feb 18, 2024
1 parent d59471c commit 1498430
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 28 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGES
-------

2.207 18 February 2024

* No changes

2.206 25 July 2023

* 2.206
Expand Down
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"runtime" : {
"requires" : {
"Compress::LZF" : "0",
"IO::Compress::Base" : "2.206",
"IO::Uncompress::Base" : "2.206"
"IO::Compress::Base" : "2.207",
"IO::Uncompress::Base" : "2.207"
}
}
},
Expand All @@ -52,6 +52,6 @@
"web" : "https://github.com/pmqs/IO-Compress-Lzf"
}
},
"version" : "2.206",
"version" : "2.207",
"x_serialization_backend" : "JSON::PP version 2.97001"
}
6 changes: 3 additions & 3 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ no_index:
- private
requires:
Compress::LZF: '0'
IO::Compress::Base: '2.206'
IO::Uncompress::Base: '2.206'
IO::Compress::Base: '2.207'
IO::Uncompress::Base: '2.207'
resources:
bugtracker: https://github.com/pmqs/IO-Compress-Lzf/issues
homepage: https://github.com/pmqs/IO-Compress-Lzf
repository: git://github.com/pmqs/IO-Compress-Lzf.git
version: '2.206'
version: '2.207'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use strict ;
require 5.006 ;

$::VERSION = '2.206' ;
$::VERSION = '2.207' ;

use lib '.';
use private::MakeUtil;
Expand Down
13 changes: 7 additions & 6 deletions README
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

IO-Compress-Lzf

Version 2.206
Version 2.207

25 July 2023
18 February 2024

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

Expand Down Expand Up @@ -84,13 +84,14 @@ To help me help you, I need all of the following information:
If you haven't installed IO-Compress-Lzf then search IO::Compress::Lzf.pm
for a line like this:

$VERSION = "2.206" ;
$VERSION = "2.207" ;

2. If you are having problems building IO-Compress-Lzf, send me a
complete log of what happened. Start by unpacking the IO-Compress-Lzf
module into a fresh directory and keep a log of all the steps
module into a fresh directory and keep a log of all the steps, including
the setting of configuration environment variables (if applicable).

[edit config.in, if necessary]
[edit config.in or set environment varialbes, if necessary]
perl Makefile.PL
make
make test TEST_VERBOSE=1
Expand Down
4 changes: 2 additions & 2 deletions lib/IO/Compress/Adapter/Lzf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use strict;
use warnings;
use bytes;

use IO::Compress::Base::Common 2.206 qw(:Status);
use IO::Compress::Base::Common 2.207 qw(:Status);
use Compress::LZF ;

our ($VERSION);
$VERSION = '2.206';
$VERSION = '2.207';

use constant SIGNATURE => 'ZV';

Expand Down
10 changes: 5 additions & 5 deletions lib/IO/Compress/Lzf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ use warnings;
require Exporter ;
use bytes;

use IO::Compress::Base 2.206 ;
use IO::Compress::Base 2.207 ;

use IO::Compress::Base::Common 2.206 qw(createSelfTiedObject);
use IO::Compress::Adapter::Lzf 2.206 ;
use IO::Compress::Base::Common 2.207 qw(createSelfTiedObject);
use IO::Compress::Adapter::Lzf 2.207 ;
#use Compress::Lzf ;

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

$VERSION = '2.206';
$VERSION = '2.207';
$LzfError = '';

@ISA = qw( IO::Compress::Base Exporter );
Expand Down Expand Up @@ -824,7 +824,7 @@ See the Changes file.
=head1 COPYRIGHT AND LICENSE
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
Copyright (c) 2005-2024 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
4 changes: 2 additions & 2 deletions lib/IO/Uncompress/Adapter/Lzf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use strict;
use warnings;
use bytes;

use IO::Compress::Base::Common 2.206 qw(:Status);
use IO::Compress::Base::Common 2.207 qw(:Status);
use Compress::LZF ;

our ($VERSION, @ISA);
$VERSION = '2.206';
$VERSION = '2.207';


sub mkUncompObject
Expand Down
10 changes: 5 additions & 5 deletions lib/IO/Uncompress/UnLzf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ use strict ;
use warnings;
use bytes;

use IO::Compress::Base::Common 2.206 qw(:Status createSelfTiedObject);
use IO::Compress::Base::Common 2.207 qw(:Status createSelfTiedObject);

use IO::Uncompress::Base 2.206 ;
use IO::Uncompress::Adapter::Lzf 2.206 ;
use IO::Uncompress::Base 2.207 ;
use IO::Uncompress::Adapter::Lzf 2.207 ;


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

$VERSION = '2.206';
$VERSION = '2.207';
$UnLzfError = '';

@ISA = qw( IO::Uncompress::Base Exporter );
Expand Down Expand Up @@ -986,7 +986,7 @@ See the Changes file.
=head1 COPYRIGHT AND LICENSE
Copyright (c) 2005-2023 Paul Marquess. All rights reserved.
Copyright (c) 2005-2024 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
2 changes: 1 addition & 1 deletion t/000prereq.t
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ BEGIN
if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 };


my $VERSION = '2.206';
my $VERSION = '2.207';
my @NAMES = qw(
IO::Compress::Base
IO::Uncompress::Base
Expand Down

0 comments on commit 1498430

Please sign in to comment.