Bump version and update Changes master 0.004_002
authorMarius Gavrilescu <marius@ieval.ro>
Tue, 11 Jun 2019 13:05:53 +0000 (16:05 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Tue, 11 Jun 2019 13:05:53 +0000 (16:05 +0300)
Changes
README
lib/IO/Compress/Brotli.pm
lib/IO/Uncompress/Brotli.pm

diff --git a/Changes b/Changes
index c400087024537b147dbac6150e22997a80af55ce..6d35607d23824e10d0d3c3f9806647137daf4b99 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,12 @@
 Revision history for Perl extension IO::Compress::Brotli.
 
+0.004_002 2019-06-11T16:06+03:00
+ - Make unbro not require maximum buffer size (RT #129480)
+ - Add "binmode FH" to 01-uncompress.t (RT #125995)
+ - Fix link in POD
+ - Update POD for bro to include configurables (thanks, Mark Zabaro)
+ - Update included Brotli library to v1.0.7
+
 0.004001 2018-05-19T19:58+01:00
  - Update included Brotli library to v1.0.4
  - Use File::Slurper instead of File::Slurp
diff --git a/README b/README
index 1c2da72ea1c9da1869c1d643475002491f9c2767..e597f3ddfd4944f95fb5a7c8d745b862bd58dc3d 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-IO-Compress-Brotli version 0.004001
-===================================
+IO-Compress-Brotli version 0.004_002
+====================================
 
 Brotli is a data compression format primarily used in web fonts and
 (more recently) HTTP compression.
index ed206a9148bc4cd7b170f843475620174e93ada6..80a7b703fd078cb9db2ef7043761188a7d031e10 100644 (file)
@@ -12,7 +12,7 @@ use IO::Uncompress::Brotli;
 our @EXPORT = qw/bro/;
 our @EXPORT_OK = @EXPORT;
 
-our $VERSION = '0.004001';
+our $VERSION = '0.004_002';
 
 my %BROTLI_ENCODER_MODE = ( generic => 0, text => 1, font => 2 );
 sub mode {
index 0cc22e2643e49fed2148760c3885b9484af8df6b..f472ca989afb0d5e9bef138a3c612487442272ee 100644 (file)
@@ -8,13 +8,13 @@ use parent qw/Exporter/;
 our @EXPORT = qw/unbro/;
 our @EXPORT_OK = @EXPORT;
 
-our $VERSION = '0.004001';
+our $VERSION = '0.004_002';
 
 require XSLoader;
 XSLoader::load('IO::Compress::Brotli', $VERSION);
 
-# 0.004 has unbro with prototype $$
-# 0.004_001 renames it to unbro_given_size, and provides unbro with
+# 0.004001 has unbro with prototype $$
+# 0.004_002 renames it to unbro_given_size, and provides unbro with
 #           prototype $;$ which calls:
 #           * unbro_given_size when called with two arguments
 #           * the OO interface when called with one argument
@@ -73,7 +73,7 @@ data. It allocates a buffer of size I<$maximum_decoded_size> to store
 the decompressed data, if this is not sufficient (or there is another
 error) this function will croak.
 
-As of version 0.004_001, the I<$maximum_decoded_size> argument is
+As of version 0.004_002, the I<$maximum_decoded_size> argument is
 optional. If not provided, B<unbro> uses the streaming interface
 described in the next section to decompress the buffer in blocks of
 one megabyte. The decompressed blocks are concatenated and returned.
This page took 0.014046 seconds and 4 git commands to generate.