Revision history for Perl extension IO::Compress::Brotli.
+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
+ - Use a git submodule to embed the brotli repo
+ - Modernise calls to deprecated brotli decoder APIs
+ - Add brotli encoder bindings
+ - Add more tests
+ - Add a command line tool (bro-perl) that imitates the official bro
+ tool
+ - Make XS code look nicer
+
0.001001 2016-01-01T11:32+02:00
- Add BUILD_REQUIRES
-IO-Compress-Brotli version 0.001001
-===================================
+IO-Compress-Brotli version 0.002
+================================
Brotli is a data compression format primarily used in web fonts and
(more recently) HTTP compression.
COPYRIGHT AND LICENCE
-Copyright (C) 2015 by Marius Gavrilescu
+Copyright (C) 2015-2016 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.20.2 or,
our @EXPORT = qw/bro/;
our @EXPORT_OK = @EXPORT;
-our $VERSION = '0.001001';
+our $VERSION = '0.002';
my %BROTLI_ENCODER_MODE = ( generic => 0, text => 1, font => 2 );
sub mode {
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2015 by Marius Gavrilescu
+Copyright (C) 2015-2016 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.20.2 or,
our @EXPORT = qw/unbro/;
our @EXPORT_OK = @EXPORT;
-our $VERSION = '0.001001';
+our $VERSION = '0.002';
require XSLoader;
XSLoader::load('IO::Compress::Brotli', $VERSION);
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2015 by Marius Gavrilescu
+Copyright (C) 2015-2016 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.20.2 or,