From: Marius Gavrilescu Date: Sat, 16 Sep 2017 20:39:46 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.003^0 X-Git-Url: http://git.ieval.ro/?p=io-compress-brotli.git;a=commitdiff_plain;h=6b0c6c8a277cb2c9f4640aef48ac74ada277aafe Bump version and update Changes --- diff --git a/Changes b/Changes index 46045e5..23ade54 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension IO::Compress::Brotli. +0.003 2017-09-16T23:40+03:00 + - Same as 0.002_002 + - Update included Brotli library to v0.6.0 + - [BREAKS API] unbro now takes two parameters due to the removal of + the BrotliDecompressedSize function + 0.002_002 2017-09-09T18:10+01:00 - Update included Brotli library to v0.6.0 - [BREAKS API] unbro now takes two parameters due to the removal of diff --git a/README b/README index d09a639..79adeb9 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -IO-Compress-Brotli version 0.002_002 -==================================== +IO-Compress-Brotli version 0.003 +================================ 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 0b81818..7c463b1 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_002'; +our $VERSION = '0.003'; 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 05c54a7..bbfea4e 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_002'; +our $VERSION = '0.003'; require XSLoader; XSLoader::load('IO::Compress::Brotli', $VERSION);