From: Alexandre Mestiashvili Date: Mon, 29 Apr 2019 15:00:54 +0000 (+0200) Subject: New upstream version 4.007+ds X-Git-Tag: archive/raspbian/4.017+ds-1+rpi1~1^2~3^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3675af62be2a05e63f0aba5d28aa21c70a77610a;p=libsereal-encoder-perl.git New upstream version 4.007+ds --- diff --git a/Changes b/Changes index e73a6bd..b7c2839 100644 --- 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() diff --git a/META.json b/META.json index 348e2a0..035577f 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Steffen Mueller , Yves Orton " ], "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" } diff --git a/META.yml b/META.yml index b6a2d38..1e5e24a 100644 --- 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' diff --git a/lib/Sereal/Encoder.pm b/lib/Sereal/Encoder.pm index cafc9b2..b0f2fe4 100644 --- a/lib/Sereal/Encoder.pm +++ b/lib/Sereal/Encoder.pm @@ -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. diff --git a/lib/Sereal/Encoder/Constants.pm b/lib/Sereal/Encoder/Constants.pm index ac9ff2e..7b4a9a3 100644 --- a/lib/Sereal/Encoder/Constants.pm +++ b/lib/Sereal/Encoder/Constants.pm @@ -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);