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 68b1012 commit 1748dc5
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 29 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::LZO" : "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-Lzop"
}
},
"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::LZO: '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-Lzop/issues
homepage: https://github.com/pmqs/IO-Compress-Lzop
repository: git://github.com/pmqs/IO-Compress-Lzop.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
8 changes: 4 additions & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

IO-Compress-Lzop

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,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.206" ;
$VERSION = "2.207" ;

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.206 qw(:Status);
use IO::Compress::Base::Common 2.207 qw(:Status);
use Compress::LZO qw(crc32 adler32);

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

sub mkCompObject
{
Expand Down
12 changes: 6 additions & 6 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.206 ;
use IO::Compress::Base 2.207 ;

use IO::Compress::Base::Common 2.206 qw(isaScalar createSelfTiedObject);
use IO::Compress::Adapter::LZO 2.206 ;
use IO::Compress::Base::Common 2.207 qw(isaScalar createSelfTiedObject);
use IO::Compress::Adapter::LZO 2.207 ;
use Compress::LZO qw(crc32 adler32 LZO_VERSION);
use IO::Compress::Lzop::Constants 2.206 ;
use IO::Compress::Lzop::Constants 2.207 ;

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

$VERSION = '2.206';
$VERSION = '2.207';
$LzopError = '';

@ISA = qw( IO::Compress::Base Exporter );
Expand Down Expand Up @@ -957,7 +957,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 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.206';
$VERSION = '2.207';

@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.206 qw(:Status);
use IO::Compress::Base::Common 2.207 qw(:Status);
use Compress::LZO ;

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


sub mkUncompObject
Expand Down
12 changes: 6 additions & 6 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.206 qw(:Status createSelfTiedObject);
use IO::Compress::Base::Common 2.207 qw(:Status createSelfTiedObject);

use IO::Uncompress::Base 2.206 ;
use IO::Uncompress::Adapter::LZO 2.206 ;
use IO::Uncompress::Base 2.207 ;
use IO::Uncompress::Adapter::LZO 2.207 ;
use Compress::LZO qw(crc32 adler32);
use IO::Compress::Lzop::Constants 2.206 ;
use IO::Compress::Lzop::Constants 2.207 ;


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

$VERSION = '2.206';
$VERSION = '2.207';
$UnLzopError = '';

@ISA = qw( IO::Uncompress::Base Exporter );
Expand Down Expand Up @@ -1072,7 +1072,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 1748dc5

Please sign in to comment.