diff --git a/Changes b/Changes index 82460d4..e849883 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,10 @@ CHANGES ------- + 2.207 18 February 2024 + + * No changes + 2.206 25 July 2023 * 2.206 diff --git a/META.json b/META.json index 1cab5a4..a65272e 100644 --- a/META.json +++ b/META.json @@ -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" } } }, @@ -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" } diff --git a/META.yml b/META.yml index 90018f7..1c57a31 100644 --- a/META.yml +++ b/META.yml @@ -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' diff --git a/Makefile.PL b/Makefile.PL index 93e5caf..3e2c6f3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,7 @@ use strict ; require 5.006 ; -$::VERSION = '2.206' ; +$::VERSION = '2.207' ; use lib '.'; use private::MakeUtil; diff --git a/README b/README index 9e566a6..8aa44a1 100644 --- a/README +++ b/README @@ -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. @@ -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 diff --git a/lib/IO/Compress/Adapter/LZO.pm b/lib/IO/Compress/Adapter/LZO.pm index d339b38..d50abef 100644 --- a/lib/IO/Compress/Adapter/LZO.pm +++ b/lib/IO/Compress/Adapter/LZO.pm @@ -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 { diff --git a/lib/IO/Compress/Lzop.pm b/lib/IO/Compress/Lzop.pm index 63dc512..64f32b1 100644 --- a/lib/IO/Compress/Lzop.pm +++ b/lib/IO/Compress/Lzop.pm @@ -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 ); @@ -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. diff --git a/lib/IO/Compress/Lzop/Constants.pm b/lib/IO/Compress/Lzop/Constants.pm index c6f343c..fc98ef4 100644 --- a/lib/IO/Compress/Lzop/Constants.pm +++ b/lib/IO/Compress/Lzop/Constants.pm @@ -8,7 +8,7 @@ require Exporter; our ($VERSION, @ISA, @EXPORT); -$VERSION = '2.206'; +$VERSION = '2.207'; @ISA = qw(Exporter); diff --git a/lib/IO/Uncompress/Adapter/LZO.pm b/lib/IO/Uncompress/Adapter/LZO.pm index 26956a4..2f723d1 100644 --- a/lib/IO/Uncompress/Adapter/LZO.pm +++ b/lib/IO/Uncompress/Adapter/LZO.pm @@ -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 diff --git a/lib/IO/Uncompress/UnLzop.pm b/lib/IO/Uncompress/UnLzop.pm index 7321148..676bd6d 100644 --- a/lib/IO/Uncompress/UnLzop.pm +++ b/lib/IO/Uncompress/UnLzop.pm @@ -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 ); @@ -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. diff --git a/t/000prereq.t b/t/000prereq.t index af2b54a..fbc9a30 100644 --- a/t/000prereq.t +++ b/t/000prereq.t @@ -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