Skip to content

Commit

Permalink
Update to 2.088
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Nov 3, 2019
1 parent 37e04fb commit cb1180f
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 13 deletions.
8 changes: 8 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
16 changes: 9 additions & 7 deletions README
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
-----------
Expand Down Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions lib/Compress/Raw/Bzip2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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<https://github.com/pmqs/
Compress-Raw-Bzip2/issues> (preferred) or
L<https://github.com/pmqs/Compress-Raw-Bzip2/issues> (preferred) or
L<https://rt.cpan.org/Public/Dist/Display.html?Name=Compress-Raw-Bzip2>.
=head1 SEE ALSO
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.087';
my $VERSION = '2.088';
my @NAMES = qw(
);
Expand Down

0 comments on commit cb1180f

Please sign in to comment.