diff --git a/Changes b/Changes index 4be0743..ef0adec 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,23 @@ CHANGES ------- + 2.204 8 February 2023 + + * Cast isdigit argument as unsigned char + https://github.com/pmqs/Compress-Raw-Bzip2/pull/9 + 967696b4fa91768fa4d46163f46982bc063a175e + + * Use GIMME_V instead of GIMME + https://github.com/pmqs/Compress-Raw-Bzip2/pull/8 + 54e3c1e18b61f0892056925240bbc80f76e2f038 + + * typos + 12496575c17829506cc9c9fa325e31aab1fcd1c7 + + * Trim trailing spaces from bzip2-src + https://github.com/pmqs/Compress-Raw-Bzip2/pull/7 + 8728d405e8d805cb88685b82a5e5493b62288046 + 2.201 25 June 2022 * 2.201 diff --git a/META.json b/META.json index 4f41d43..5561f72 100644 --- a/META.json +++ b/META.json @@ -45,6 +45,6 @@ "web" : "https://github.com/pmqs/Compress-Raw-Bzip2" } }, - "version" : "2.201", + "version" : "2.204", "x_serialization_backend" : "JSON::PP version 2.27300" } diff --git a/META.yml b/META.yml index 79fd679..1f7a74b 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.201' +version: '2.204' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index e680123..e0d6b4e 100644 --- a/README +++ b/README @@ -1,11 +1,11 @@ Compress-Raw-Bzip2 - Version 2.201 + Version 2.204 - 25 June 2022 + 8 February 2023 - Copyright (c) 2005-2022 Paul Marquess. All rights reserved. + Copyright (c) 2005-2023 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. @@ -172,7 +172,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.201" ; + $VERSION = "2.204" ; 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 2914678..d31f68d 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.201'; +$VERSION = '2.204'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -384,7 +384,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2022 Paul Marquess. All rights reserved. +Copyright (c) 2005-2023 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 2dfe201..871fe18 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.201'; + my $VERSION = '2.204'; my @NAMES = qw( );