From f921cad8cf7821075559e9e65481304046f0145f Mon Sep 17 00:00:00 2001 From: pmqs Date: Wed, 28 Aug 2024 16:25:42 +0100 Subject: [PATCH] version 2.213 --- Changes | 6 +++++- META.json | 6 +++--- META.yml | 6 +++--- Makefile.PL | 2 +- README | 6 +++--- lib/IO/Compress/Adapter/LZO.pm | 4 ++-- lib/IO/Compress/Lzop.pm | 10 +++++----- lib/IO/Compress/Lzop/Constants.pm | 2 +- lib/IO/Uncompress/Adapter/LZO.pm | 4 ++-- lib/IO/Uncompress/UnLzop.pm | 10 +++++----- t/000prereq.t | 2 +- 11 files changed, 31 insertions(+), 27 deletions(-) diff --git a/Changes b/Changes index b059ec6..2e19402 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,14 @@ CHANGES ------- + 2.213 27 August 2024 + + * no functional changes + 2.212 27 April 2024 * no functional changes - + 2.211 6 April 2024 * version 2.211 diff --git a/META.json b/META.json index 2fb7175..9cdcd3b 100644 --- a/META.json +++ b/META.json @@ -35,8 +35,8 @@ "runtime" : { "requires" : { "Compress::LZO" : "0", - "IO::Compress::Base" : "2.212", - "IO::Uncompress::Base" : "2.212" + "IO::Compress::Base" : "2.213", + "IO::Uncompress::Base" : "2.213" } } }, @@ -52,6 +52,6 @@ "web" : "https://github.com/pmqs/IO-Compress-Lzop" } }, - "version" : "2.212", + "version" : "2.213", "x_serialization_backend" : "JSON::PP version 2.97001" } diff --git a/META.yml b/META.yml index ea950e1..2ee1b61 100644 --- a/META.yml +++ b/META.yml @@ -21,11 +21,11 @@ no_index: - private requires: Compress::LZO: '0' - IO::Compress::Base: '2.212' - IO::Uncompress::Base: '2.212' + IO::Compress::Base: '2.213' + IO::Uncompress::Base: '2.213' 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.212' +version: '2.213' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/Makefile.PL b/Makefile.PL index 0bb43ac..3db7abc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,7 +3,7 @@ use strict ; require 5.006 ; -$::VERSION = '2.212' ; +$::VERSION = '2.213' ; use lib '.'; use private::MakeUtil; diff --git a/README b/README index 2cb2f9f..8d16a88 100644 --- a/README +++ b/README @@ -1,9 +1,9 @@ IO-Compress-Lzop - Version 2.212 + Version 2.213 - 27 April 2024 + 28 August 2024 Copyright (c) 2005-2024 Paul Marquess. All rights reserved. This program is free software; you can redistribute it @@ -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.212" ; + $VERSION = "2.213" ; 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 831ad4a..66a24e9 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.212 qw(:Status); +use IO::Compress::Base::Common 2.213 qw(:Status); use Compress::LZO qw(crc32 adler32); our ($VERSION); -$VERSION = '2.212'; +$VERSION = '2.213'; sub mkCompObject { diff --git a/lib/IO/Compress/Lzop.pm b/lib/IO/Compress/Lzop.pm index dc31eac..88124a7 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.212 ; +use IO::Compress::Base 2.213 ; -use IO::Compress::Base::Common 2.212 qw(isaScalar createSelfTiedObject); -use IO::Compress::Adapter::LZO 2.212 ; +use IO::Compress::Base::Common 2.213 qw(isaScalar createSelfTiedObject); +use IO::Compress::Adapter::LZO 2.213 ; use Compress::LZO qw(crc32 adler32 LZO_VERSION); -use IO::Compress::Lzop::Constants 2.212 ; +use IO::Compress::Lzop::Constants 2.213 ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $LzopError); -$VERSION = '2.212'; +$VERSION = '2.213'; $LzopError = ''; @ISA = qw( IO::Compress::Base Exporter ); diff --git a/lib/IO/Compress/Lzop/Constants.pm b/lib/IO/Compress/Lzop/Constants.pm index 3062dbf..bec1de7 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.212'; +$VERSION = '2.213'; @ISA = qw(Exporter); diff --git a/lib/IO/Uncompress/Adapter/LZO.pm b/lib/IO/Uncompress/Adapter/LZO.pm index dc0f4f6..09919ee 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.212 qw(:Status); +use IO::Compress::Base::Common 2.213 qw(:Status); use Compress::LZO ; our ($VERSION, @ISA); -$VERSION = '2.212'; +$VERSION = '2.213'; sub mkUncompObject diff --git a/lib/IO/Uncompress/UnLzop.pm b/lib/IO/Uncompress/UnLzop.pm index d099783..96d3b52 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.212 qw(:Status createSelfTiedObject); +use IO::Compress::Base::Common 2.213 qw(:Status createSelfTiedObject); -use IO::Uncompress::Base 2.212 ; -use IO::Uncompress::Adapter::LZO 2.212 ; +use IO::Uncompress::Base 2.213 ; +use IO::Uncompress::Adapter::LZO 2.213 ; use Compress::LZO qw(crc32 adler32); -use IO::Compress::Lzop::Constants 2.212 ; +use IO::Compress::Lzop::Constants 2.213 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnLzopError); -$VERSION = '2.212'; +$VERSION = '2.213'; $UnLzopError = ''; @ISA = qw( IO::Uncompress::Base Exporter ); diff --git a/t/000prereq.t b/t/000prereq.t index 64835c6..7f1c8b9 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.212'; + my $VERSION = '2.213'; my @NAMES = qw( IO::Compress::Base IO::Uncompress::Base