From: Marius Gavrilescu Date: Sat, 14 Oct 2017 17:55:08 +0000 (+0100) Subject: Bump version and update Changes X-Git-Tag: 0.003_002^0 X-Git-Url: http://git.ieval.ro/?p=io-compress-brotli.git;a=commitdiff_plain;h=f8a89233332ac1ddd842918a9120d6ac19701aa3 Bump version and update Changes --- diff --git a/Changes b/Changes index 9c15590..620785a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension IO::Compress::Brotli. +0.003_002 2017-10-14T18:55+01:00 + - Fix bad version causing test failures + 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 diff --git a/README b/README index 5340bc4..0d5866c 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -IO-Compress-Brotli version 0.003_001 +IO-Compress-Brotli version 0.003_002 ==================================== Brotli is a data compression format primarily used in web fonts and diff --git a/lib/IO/Compress/Brotli.pm b/lib/IO/Compress/Brotli.pm index 05651f7..3bc0b6e 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_001'; +our $VERSION = '0.003_002'; 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 46b1189..07fed0d 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.003001'; +our $VERSION = '0.003_002'; require XSLoader; XSLoader::load('IO::Compress::Brotli', $VERSION);