Skip to content

Commit

Permalink
version 2.212
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Apr 27, 2024
1 parent c3d1742 commit d291ce7
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 23 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGES
-------

2.212 27 April 2024

* no functional changes

2.211 6 April 2024

* version 2.211
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.211",
"IO::Uncompress::Base" : "2.211"
"IO::Compress::Base" : "2.212",
"IO::Uncompress::Base" : "2.212"
}
}
},
Expand All @@ -52,6 +52,6 @@
"web" : "https://github.com/pmqs/IO-Compress-Lzf"
}
},
"version" : "2.211",
"version" : "2.212",
"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.211'
IO::Uncompress::Base: '2.211'
IO::Compress::Base: '2.212'
IO::Uncompress::Base: '2.212'
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.211'
version: '2.212'
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.211' ;
$::VERSION = '2.212' ;

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

IO-Compress-Lzf

Version 2.211
Version 2.212

6 April 2024
27 April 2024

Copyright (c) 2005-2024 Paul Marquess. All rights reserved.
This program is free software; you can redistribute it
Expand Down Expand Up @@ -84,7 +84,7 @@ 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.211" ;
$VERSION = "2.212" ;

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
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.211 qw(:Status);
use IO::Compress::Base::Common 2.212 qw(:Status);
use Compress::LZF ;

our ($VERSION);
$VERSION = '2.211';
$VERSION = '2.212';

use constant SIGNATURE => 'ZV';

Expand Down
8 changes: 4 additions & 4 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.211 ;
use IO::Compress::Base 2.212 ;

use IO::Compress::Base::Common 2.211 qw(createSelfTiedObject);
use IO::Compress::Adapter::Lzf 2.211 ;
use IO::Compress::Base::Common 2.212 qw(createSelfTiedObject);
use IO::Compress::Adapter::Lzf 2.212 ;
#use Compress::Lzf ;

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

$VERSION = '2.211';
$VERSION = '2.212';
$LzfError = '';

@ISA = qw( IO::Compress::Base Exporter );
Expand Down
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.211 qw(:Status);
use IO::Compress::Base::Common 2.212 qw(:Status);
use Compress::LZF ;

our ($VERSION, @ISA);
$VERSION = '2.211';
$VERSION = '2.212';


sub mkUncompObject
Expand Down
8 changes: 4 additions & 4 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.211 qw(:Status createSelfTiedObject);
use IO::Compress::Base::Common 2.212 qw(:Status createSelfTiedObject);

use IO::Uncompress::Base 2.211 ;
use IO::Uncompress::Adapter::Lzf 2.211 ;
use IO::Uncompress::Base 2.212 ;
use IO::Uncompress::Adapter::Lzf 2.212 ;


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

$VERSION = '2.211';
$VERSION = '2.212';
$UnLzfError = '';

@ISA = qw( IO::Uncompress::Base Exporter );
Expand Down
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.211';
my $VERSION = '2.212';
my @NAMES = qw(
IO::Compress::Base
IO::Uncompress::Base
Expand Down

0 comments on commit d291ce7

Please sign in to comment.