diff --git a/Changes b/Changes index cd6d725..cd1cae7 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,14 @@ CHANGES ------- + 2.088 31 October 2019 + + * Add Support Details + 37e04fb3dc50287a3512b004282425c6eedb8af6 + + * upgrade to Bzip2 1.0.8 + 027a30848ee57731b435d2ea7af09e532bf6fbfd + 2.087 10 August 2019 * No Changes diff --git a/META.json b/META.json index bb6e5ae..a667aa5 100644 --- a/META.json +++ b/META.json @@ -45,6 +45,6 @@ "web" : "https://github.com/pmqs/Compress-Raw-Bzip2" } }, - "version" : "2.087", + "version" : "2.088", "x_serialization_backend" : "JSON::PP version 2.27300" } diff --git a/META.yml b/META.yml index b8c4496..603ee47 100644 --- a/META.yml +++ b/META.yml @@ -23,5 +23,5 @@ resources: bugtracker: https://github.com/pmqs/Compress-Raw-Bzip2/issues homepage: https://github.com/pmqs/Compress-Raw-Bzip2 repository: git://github.com/pmqs/Compress-Raw-Bzip2.git -version: '2.087' +version: '2.088' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index 472a30d..64060ce 100644 --- a/README +++ b/README @@ -1,9 +1,9 @@ Compress-Raw-Bzip2 - Version 2.087 + Version 2.088 - 10 August 2019 + 3 November 2019 Copyright (c) 2005-2019 Paul Marquess. All rights reserved. This program is free software; you can redistribute it @@ -16,10 +16,12 @@ Full source for the bzip2 library is available at https://sourceware.org/bzip2/ - Note that the files bzip2.c, bzip2recover.c, bzlib.c & decompress.c - have been modified to allow them to build with a C++ compiler. - The file bzip2-src/bzip2-cpp.patch contains the patch - that was used to modify the original source. + Note that some of the bzip2 source files have been modified + to allow them to build with a C++ compiler + and/or silence compiler warnings. + The file bzip2-src/bzip2.patch contains the patch + that was used to modify the original source. + DESCRIPTION ----------- @@ -171,7 +173,7 @@ To help me help you, I need all of the following information: If you haven't installed Compress-Raw-Bzip2 then search Compress::Raw::Bzip2.pm for a line like this: - $VERSION = "2.087" ; + $VERSION = "2.088" ; c. The version of bzip2 you have used. If you have successfully installed Compress-Raw-Bzip2, this one-liner diff --git a/lib/Compress/Raw/Bzip2.pm b/lib/Compress/Raw/Bzip2.pm index 659b90d..668ea70 100644 --- a/lib/Compress/Raw/Bzip2.pm +++ b/lib/Compress/Raw/Bzip2.pm @@ -11,7 +11,7 @@ use Carp ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD); -$VERSION = '2.087'; +$VERSION = '2.088'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -357,8 +357,7 @@ The following bzip2 constants are exported by this module =head1 SUPPORT General feedback/questions/bug reports should be sent to -L (preferred) or +L (preferred) or L. =head1 SEE ALSO diff --git a/t/000prereq.t b/t/000prereq.t index 44832e2..805624f 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.087'; + my $VERSION = '2.088'; my @NAMES = qw( );