New upstream version 4.007+ds
authorAlexandre Mestiashvili <mestia@debian.org>
Mon, 29 Apr 2019 15:00:54 +0000 (17:00 +0200)
committerAlexandre Mestiashvili <mestia@debian.org>
Mon, 29 Apr 2019 15:00:54 +0000 (17:00 +0200)
Changes
META.json
META.yml
lib/Sereal/Encoder.pm
lib/Sereal/Encoder/Constants.pm

diff --git a/Changes b/Changes
index e73a6bd8b61c72a3387f08da156d27a811945ea6..b7c2839a65cca6d8ae56984bf227bd1ae95a147d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -5,6 +5,12 @@ Revision history for Perl extension Sereal-Encoder
 *          of the decoder before upgrading to version 4 of the *
 *          encoder!                                            *
 ****************************************************************
+4.007 Tues Apr 9, 2019
+    * Version bump only
+
+4.006 Mon Apr 8, 2019
+    * Version bump only
+
 4.005 Tues Jan 23, 2018
     * Document encode_to_file()
 
index 348e2a0e36cd5fb7ccd472dca4ad4e7f3f9f2e29..035577f056d3a91683a7495b5ec41d43b1ead8e0 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Steffen Mueller <smueller@cpan.org>, Yves Orton <yves@cpan.org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
@@ -62,6 +62,6 @@
          "url" : "git://github.com/Sereal/Sereal.git"
       }
    },
-   "version" : "4.005",
-   "x_serialization_backend" : "JSON::PP version 2.27400"
+   "version" : "4.007",
+   "x_serialization_backend" : "JSON::PP version 2.27400_02"
 }
index b6a2d3809545e90f4afc5ecb33b1911a797b0d4b..1e5e24a24e576967183db547c879e8a45bbb2678 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -18,7 +18,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: '7.0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -34,5 +34,5 @@ requires:
 resources:
   bugtracker: https://github.com/Sereal/Sereal/issues
   repository: git://github.com/Sereal/Sereal.git
-version: '4.005'
-x_serialization_backend: 'CPAN::Meta::YAML version 0.011'
+version: '4.007'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
index cafc9b22e8c6f46135084a67e28109b73c8cb998..b0f2fe412863c794db362cec7ebd8d7a67eb8dce 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use Carp qw/croak/;
 use XSLoader;
 
-our $VERSION = '4.005'; # Don't forget to update the TestCompat set for testing against installed decoders!
+our $VERSION = '4.007'; # Don't forget to update the TestCompat set for testing against installed decoders!
 our $XS_VERSION = $VERSION; $VERSION= eval $VERSION;
 
 # not for public consumption, just for testing.
@@ -79,6 +79,7 @@ our @EXPORT_OK = qw(
   SRL_UNCOMPRESSED
   SRL_SNAPPY
   SRL_ZLIB
+  SRL_ZSTD
 );
 our %EXPORT_TAGS = (all => \@EXPORT_OK);
 # export by default if run from command line
@@ -456,7 +457,7 @@ needlessly.
 
 =head2 encode_to_file
 
-    Sereal::Decoder->encode_to_file($file,$data,$append);
+    Sereal::Encoder->encode_to_file($file,$data,$append);
     $encoder->encode_to_file($file,$data,$append);
 
 Encode the data specified and write it the named file.
index ac9ff2e992c2ba483f8ef4c04798c3245a80c853..7b4a9a3a13ebc814f05ec371f4c36c64b5b85c88 100644 (file)
@@ -4,7 +4,7 @@ use warnings;
 require Exporter;
 our @ISA= qw(Exporter);
 
-our $VERSION = '4.005'; # Don't forget to update the TestCompat set for testing against installed encoders!
+our $VERSION = '4.007'; # Don't forget to update the TestCompat set for testing against installed encoders!
 
 our (@EXPORT_OK, %DEFINE, %TAG_INFO_HASH, @TAG_INFO_ARRAY);