diff options
author | Paul Marquess <pmqs@cpan.org> | 2009-03-14 00:45:02 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-03-15 00:00:56 +0100 |
commit | 319fab5061bb39ddf68cef7d70abb160bf5f03e3 (patch) | |
tree | b72b99c2ed9afca5a7de15b64ff0e1c2fbb36e8b /ext/Compress-Raw-Bzip2 | |
parent | f50fa36f2a6ffc958fea8e2e5430b2a3d7a9bcf2 (diff) | |
download | perl-319fab5061bb39ddf68cef7d70abb160bf5f03e3.tar.gz |
Create IO-Compress
Diffstat (limited to 'ext/Compress-Raw-Bzip2')
-rw-r--r-- | ext/Compress-Raw-Bzip2/Changes | 2 | ||||
-rw-r--r-- | ext/Compress-Raw-Bzip2/README | 8 | ||||
-rw-r--r-- | ext/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm | 10 | ||||
-rw-r--r-- | ext/Compress-Raw-Bzip2/pod/FAQ.pod | 2 | ||||
-rw-r--r-- | ext/Compress-Raw-Bzip2/t/000prereq.t | 2 |
5 files changed, 15 insertions, 9 deletions
diff --git a/ext/Compress-Raw-Bzip2/Changes b/ext/Compress-Raw-Bzip2/Changes index f25e57a017..f5133dbedd 100644 --- a/ext/Compress-Raw-Bzip2/Changes +++ b/ext/Compress-Raw-Bzip2/Changes @@ -1,7 +1,7 @@ CHANGES ------- - 2.016 26 February 2009 + 2.017 26 February 2009 * Minor changes to allow building in perl core. diff --git a/ext/Compress-Raw-Bzip2/README b/ext/Compress-Raw-Bzip2/README index 158b897002..d54c8596aa 100644 --- a/ext/Compress-Raw-Bzip2/README +++ b/ext/Compress-Raw-Bzip2/README @@ -1,11 +1,11 @@ Compress-Raw-Bzip2 - Version 2.015 + Version 2.017 - 2nd September 2008 + 28th February 2009 - Copyright (c) 2005-2008 Paul Marquess. All rights reserved. + Copyright (c) 2005-2009 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. @@ -159,7 +159,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.015" ; + $VERSION = "2.017" ; c. The version of bzip2 you have used. If you have successfully installed Compress-Raw-Bzip2, this one-liner diff --git a/ext/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm b/ext/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm index ebc60a05fb..3b4615276b 100644 --- a/ext/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm +++ b/ext/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm @@ -12,7 +12,7 @@ use Carp ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD); -$VERSION = '2.015'; +$VERSION = '2.017'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -275,6 +275,12 @@ If C<appendOutput> is enabled in the constructor for the bunzip2 object, the uncompressed data will be appended to C<$output>. If not enabled, C<$output> will be truncated before the uncompressed data is written to it. +=head1 Misc + +=head2 my $version = Compress::Raw::Bzip2::bzlibversion(); + +Returns the version of the underlying bzip2 library. + =head1 Constants The following bzip2 constants are exported by this module @@ -322,7 +328,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2008 Paul Marquess. All rights reserved. +Copyright (c) 2005-2009 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/ext/Compress-Raw-Bzip2/pod/FAQ.pod b/ext/Compress-Raw-Bzip2/pod/FAQ.pod index f429807958..41921a5d44 100644 --- a/ext/Compress-Raw-Bzip2/pod/FAQ.pod +++ b/ext/Compress-Raw-Bzip2/pod/FAQ.pod @@ -112,7 +112,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2008 Paul Marquess. All rights reserved. +Copyright (c) 2005-2009 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/ext/Compress-Raw-Bzip2/t/000prereq.t b/ext/Compress-Raw-Bzip2/t/000prereq.t index 99d249be55..1467eeda7d 100644 --- a/ext/Compress-Raw-Bzip2/t/000prereq.t +++ b/ext/Compress-Raw-Bzip2/t/000prereq.t @@ -19,7 +19,7 @@ BEGIN if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 }; - my $VERSION = '2.015'; + my $VERSION = '2.016'; my @NAMES = qw( ); |