From: gregor herrmann Date: Fri, 12 Jun 2020 00:52:16 +0000 (+0200) Subject: New upstream version 4.014+ds X-Git-Tag: archive/raspbian/4.017+ds-1+rpi1~1^2~3^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3d6e00eadf9d932ab19a7dfe4dae8f9f349d57bc;p=libsereal-encoder-perl.git New upstream version 4.014+ds --- diff --git a/Changes b/Changes index fc45fb5..2f74359 100644 --- a/Changes +++ b/Changes @@ -5,8 +5,11 @@ Revision history for Perl extension Sereal-Encoder * of the decoder before upgrading to version 4 of the * * encoder! * **************************************************************** +4.014 Thurs June 11, 2020 + * Fix build issue on non-win32 platforms. + * Update zstd to 1.4.5 + 4.012 Weds June 10, 2020 - * Fix memory leak, thanks to Kirill Sysoev * Fix memory leak in looks_like_sereal(), thanks to Kirill Sysoev 4.011 Tues February 4, 2020 diff --git a/MANIFEST b/MANIFEST index 1cd970d..b1782a5 100644 --- a/MANIFEST +++ b/MANIFEST @@ -149,6 +149,8 @@ zstd/compress/zstd_compress_literals.c zstd/compress/zstd_compress_literals.h zstd/compress/zstd_compress_sequences.c zstd/compress/zstd_compress_sequences.h +zstd/compress/zstd_compress_superblock.c +zstd/compress/zstd_compress_superblock.h zstd/compress/zstd_cwksp.h zstd/compress/zstd_double_fast.c zstd/compress/zstd_double_fast.h diff --git a/META.json b/META.json index e8ca803..f440fe4 100644 --- a/META.json +++ b/META.json @@ -4,13 +4,13 @@ "Steffen Mueller , Yves Orton " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010", + "generated_by" : "ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : 2 + "version" : "2" }, "name" : "Sereal-Encoder", "no_index" : { @@ -62,6 +62,6 @@ "url" : "git://github.com/Sereal/Sereal.git" } }, - "version" : "4.012", - "x_serialization_backend" : "JSON::PP version 4.02" + "version" : "4.014", + "x_serialization_backend" : "JSON::PP version 2.27400" } diff --git a/META.yml b/META.yml index 5bd409e..39b81ca 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.34, CPAN::Meta::Converter version 2.150010' +generated_by: 'ExtUtils::MakeMaker version 7.36, 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.012' -x_serialization_backend: 'CPAN::Meta::YAML version 0.018' +version: '4.014' +x_serialization_backend: 'CPAN::Meta::YAML version 0.011' diff --git a/lib/Sereal/Encoder.pm b/lib/Sereal/Encoder.pm index e6b08e0..1f06614 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.012'; # Don't forget to update the TestCompat set for testing against installed decoders! +our $VERSION= '4.014'; # 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. diff --git a/lib/Sereal/Encoder/Constants.pm b/lib/Sereal/Encoder/Constants.pm index 642ec86..d3f2b4d 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.012'; # Don't forget to update the TestCompat set for testing against installed encoders! +our $VERSION= '4.014'; # Don't forget to update the TestCompat set for testing against installed encoders! our ( @EXPORT_OK, %DEFINE, %TAG_INFO_HASH, @TAG_INFO_ARRAY );