From c4002818175e31a54bd84cac98ac3f82024a8942 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 23 Sep 2017 22:20:02 +0300 Subject: [PATCH] Bump version and update Changes --- Changes | 6 ++++++ README | 4 ++-- lib/IO/Compress/Brotli.pm | 2 +- lib/IO/Uncompress/Brotli.pm | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index 23ade54..9c15590 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension IO::Compress::Brotli. +0.003_001 2017-09-23T22:20+03:00 + - Update included Brotli library to v1.0.1 + - [BREAKS API] remove the undocumented "set_dictionary" function from + both IO::Compress::Brotli and IO::Uncompress::Brotli because + Brotli v1.0.0 dropped support for custom dictionaries + 0.003 2017-09-16T23:40+03:00 - Same as 0.002_002 - Update included Brotli library to v0.6.0 diff --git a/README b/README index 79adeb9..5340bc4 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -IO-Compress-Brotli version 0.003 -================================ +IO-Compress-Brotli version 0.003_001 +==================================== 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 7c463b1..05651f7 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.003'; +our $VERSION = '0.003_001'; 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 bbfea4e..46b1189 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.003'; +our $VERSION = '0.003001'; require XSLoader; XSLoader::load('IO::Compress::Brotli', $VERSION); -- 2.30.2