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 dad7fa9 commit caaa9c0
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 26 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::LZO" : "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-Lzop"
}
},
"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::LZO: '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-Lzop/issues
homepage: https://github.com/pmqs/IO-Compress-Lzop
repository: git://github.com/pmqs/IO-Compress-Lzop.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-Lzop

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-Lzop then search IO::Compress::Lzop.pm
for a line like this:

$VERSION = "2.211" ;
$VERSION = "2.212" ;

2. If you are having problems building IO-Compress-Lzop, send me a
complete log of what happened. Start by unpacking the IO-Compress-Lzop
Expand Down
4 changes: 2 additions & 2 deletions lib/IO/Compress/Adapter/LZO.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::LZO qw(crc32 adler32);

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

sub mkCompObject
{
Expand Down
10 changes: 5 additions & 5 deletions lib/IO/Compress/Lzop.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ 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(isaScalar createSelfTiedObject);
use IO::Compress::Adapter::LZO 2.211 ;
use IO::Compress::Base::Common 2.212 qw(isaScalar createSelfTiedObject);
use IO::Compress::Adapter::LZO 2.212 ;
use Compress::LZO qw(crc32 adler32 LZO_VERSION);
use IO::Compress::Lzop::Constants 2.211 ;
use IO::Compress::Lzop::Constants 2.212 ;

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

$VERSION = '2.211';
$VERSION = '2.212';
$LzopError = '';

@ISA = qw( IO::Compress::Base Exporter );
Expand Down
2 changes: 1 addition & 1 deletion lib/IO/Compress/Lzop/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require Exporter;

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

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

@ISA = qw(Exporter);

Expand Down
4 changes: 2 additions & 2 deletions lib/IO/Uncompress/Adapter/LZO.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::LZO ;

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


sub mkUncompObject
Expand Down
10 changes: 5 additions & 5 deletions lib/IO/Uncompress/UnLzop.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ 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::LZO 2.211 ;
use IO::Uncompress::Base 2.212 ;
use IO::Uncompress::Adapter::LZO 2.212 ;
use Compress::LZO qw(crc32 adler32);
use IO::Compress::Lzop::Constants 2.211 ;
use IO::Compress::Lzop::Constants 2.212 ;


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

$VERSION = '2.211';
$VERSION = '2.212';
$UnLzopError = '';

@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 caaa9c0

Please sign in to comment.