From: Marius Gavrilescu Date: Thu, 8 Sep 2016 22:09:16 +0000 (+0100) Subject: Bump version and update Changes X-Git-Tag: 0.002001^0 X-Git-Url: http://git.ieval.ro/?p=io-compress-brotli.git;a=commitdiff_plain;h=20a72cf897babf49df91f9a43ed05c4f40911a68 Bump version and update Changes --- diff --git a/Changes b/Changes index 7151849..38e03f1 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension IO::Compress::Brotli. +0.002001 2016-09-08T23:09+01:00 + - Use gmake (if available) to compile the brotli library + 0.002 2016-08-28T00:33+01:00 - Thanks to Quim Rovira, Ævar Arnfjörð Bjarmason, Marcell Szathmári and Mattia Barbon for all changes in this version diff --git a/README b/README index b06e5be..3d7582e 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -IO-Compress-Brotli version 0.002 -================================ +IO-Compress-Brotli version 0.002001 +=================================== Brotli is a data compression format primarily used in web fonts and (more recently) HTTP compression. diff --git a/lib/IO/Compress/Brotli.pm b/lib/IO/Compress/Brotli.pm index 8704901..839c67b 100644 --- a/lib/IO/Compress/Brotli.pm +++ b/lib/IO/Compress/Brotli.pm @@ -10,7 +10,7 @@ use IO::Uncompress::Brotli; our @EXPORT = qw/bro/; our @EXPORT_OK = @EXPORT; -our $VERSION = '0.002'; +our $VERSION = '0.002001'; my %BROTLI_ENCODER_MODE = ( generic => 0, text => 1, font => 2 ); sub mode { diff --git a/lib/IO/Uncompress/Brotli.pm b/lib/IO/Uncompress/Brotli.pm index f0c6c3e..a253749 100644 --- a/lib/IO/Uncompress/Brotli.pm +++ b/lib/IO/Uncompress/Brotli.pm @@ -8,7 +8,7 @@ use parent qw/Exporter/; our @EXPORT = qw/unbro/; our @EXPORT_OK = @EXPORT; -our $VERSION = '0.002'; +our $VERSION = '0.002001'; require XSLoader; XSLoader::load('IO::Compress::Brotli', $VERSION);