Bump version and update Changes 0.002
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 27 Aug 2016 23:33:11 +0000 (00:33 +0100)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 27 Aug 2016 23:33:11 +0000 (00:33 +0100)
Changes
README
lib/IO/Compress/Brotli.pm
lib/IO/Uncompress/Brotli.pm

diff --git a/Changes b/Changes
index 51121326e08a5ba2ca5479f0980569a0fc4208dc..7151849eab6ec099737b20dc6954c3c0bd6cc7d0 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,16 @@
 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
 
diff --git a/README b/README
index d71e29a4f8c1e52c79425d2dbbf681d06241f5c3..b06e5beeba5da20033510f1712a406ac4ee8407d 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-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.
@@ -29,7 +29,7 @@ Additionally, it requires a C compiler.
 
 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,
index 3340598702064a563c175478a11a8686da016239..87049017ab1c9caa4256df8cb5dba1f1e168dba5 100644 (file)
@@ -10,7 +10,7 @@ use IO::Uncompress::Brotli;
 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 {
@@ -149,7 +149,7 @@ clean up of the overall project were contributed by:
 
 =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,
index 3b111f8c2b05cc26be4895d26a2c992413f0c114..f0c6c3eb2cc7e6d1e9389a981e2962fe8a402745 100644 (file)
@@ -8,7 +8,7 @@ use parent qw/Exporter/;
 our @EXPORT = qw/unbro/;
 our @EXPORT_OK = @EXPORT;
 
-our $VERSION = '0.001001';
+our $VERSION = '0.002';
 
 require XSLoader;
 XSLoader::load('IO::Compress::Brotli', $VERSION);
@@ -108,7 +108,7 @@ clean up of the overall project were contributed by:
 
 =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,
This page took 0.013667 seconds and 4 git commands to generate.