diff -Nru libsereal-perl-4.017/Changes libsereal-perl-4.018/Changes --- libsereal-perl-4.017/Changes 2020-07-09 18:18:07.000000000 +0000 +++ libsereal-perl-4.018/Changes 2020-08-03 10:23:42.000000000 +0000 @@ -13,6 +13,9 @@ * Sereal package and instead install the Encoder or * * Decoder independently. * **************************************************************** +4.018 Thurs Aug 3, 2020 + * Fix issue with gcc 10 with snappy compression. + 4.017 Thurs July 9, 2020 * The build fixes in 4.016 didn't work correctly, this should fix them. diff -Nru libsereal-perl-4.017/debian/changelog libsereal-perl-4.018/debian/changelog --- libsereal-perl-4.017/debian/changelog 2020-07-10 21:22:12.000000000 +0000 +++ libsereal-perl-4.018/debian/changelog 2020-08-03 17:22:48.000000000 +0000 @@ -1,3 +1,11 @@ +libsereal-perl (4.018-1) unstable; urgency=medium + + * Import upstream version 4.018. + * Bump versioned test and runtime dependency on + libsereal-{de,en}coder-perl. + + -- gregor herrmann Mon, 03 Aug 2020 19:22:48 +0200 + libsereal-perl (4.017-1) unstable; urgency=medium * Import upstream version 4.017. diff -Nru libsereal-perl-4.017/debian/control libsereal-perl-4.018/debian/control --- libsereal-perl-4.017/debian/control 2020-07-10 21:22:12.000000000 +0000 +++ libsereal-perl-4.018/debian/control 2020-08-03 17:22:48.000000000 +0000 @@ -6,8 +6,8 @@ Priority: optional Build-Depends: debhelper-compat (= 13) Build-Depends-Indep: libscalar-list-utils-perl , - libsereal-decoder-perl (>= 4.017) , - libsereal-encoder-perl (>= 4.017) , + libsereal-decoder-perl (>= 4.018) , + libsereal-encoder-perl (>= 4.018) , libtest-longstring-perl , libtest-memorygrowth-perl , libtest-simple-perl , diff -Nru libsereal-perl-4.017/lib/Sereal.pm libsereal-perl-4.018/lib/Sereal.pm --- libsereal-perl-4.017/lib/Sereal.pm 2020-07-09 18:18:52.000000000 +0000 +++ libsereal-perl-4.018/lib/Sereal.pm 2020-08-03 10:24:01.000000000 +0000 @@ -2,9 +2,9 @@ use 5.008; use strict; use warnings; -our $VERSION= '4.017'; +our $VERSION= '4.018'; our $XS_VERSION= $VERSION; $VERSION= eval $VERSION; -use Sereal::Encoder 4.017 qw( +use Sereal::Encoder 4.018 qw( encode_sereal sereal_encode_with_object SRL_UNCOMPRESSED @@ -12,7 +12,7 @@ SRL_ZLIB SRL_ZSTD ); -use Sereal::Decoder 4.017 qw( +use Sereal::Decoder 4.018 qw( decode_sereal looks_like_sereal decode_sereal_with_header_data diff -Nru libsereal-perl-4.017/Makefile.PL libsereal-perl-4.018/Makefile.PL --- libsereal-perl-4.017/Makefile.PL 2020-07-09 18:18:52.000000000 +0000 +++ libsereal-perl-4.018/Makefile.PL 2020-08-03 10:24:01.000000000 +0000 @@ -4,7 +4,7 @@ use ExtUtils::MakeMaker; use Cwd; -our $VERSION= '4.017'; +our $VERSION= '4.018'; my $shared_dir= "../shared"; my $its_our_repo_file= "../this_is_the_Sereal_repo.txt"; diff -Nru libsereal-perl-4.017/META.json libsereal-perl-4.018/META.json --- libsereal-perl-4.017/META.json 2020-07-09 18:29:25.000000000 +0000 +++ libsereal-perl-4.018/META.json 2020-08-03 10:38:39.000000000 +0000 @@ -32,8 +32,8 @@ }, "runtime" : { "requires" : { - "Sereal::Decoder" : "4.017", - "Sereal::Encoder" : "4.017", + "Sereal::Decoder" : "4.018", + "Sereal::Encoder" : "4.018", "perl" : "5.008" } }, @@ -42,8 +42,8 @@ "Data::Dumper" : "0", "File::Spec" : "0", "Scalar::Util" : "0", - "Sereal::Decoder" : "4.017", - "Sereal::Encoder" : "4.017", + "Sereal::Decoder" : "4.018", + "Sereal::Encoder" : "4.018", "Test::LongString" : "0", "Test::More" : "0.88", "Test::Warn" : "0" @@ -60,6 +60,6 @@ "url" : "git://github.com/Sereal/Sereal.git" } }, - "version" : "4.017", + "version" : "4.018", "x_serialization_backend" : "JSON::PP version 2.27400" } diff -Nru libsereal-perl-4.017/META.yml libsereal-perl-4.018/META.yml --- libsereal-perl-4.017/META.yml 2020-07-09 18:29:25.000000000 +0000 +++ libsereal-perl-4.018/META.yml 2020-08-03 10:38:39.000000000 +0000 @@ -7,8 +7,8 @@ ExtUtils::MakeMaker: '0' File::Spec: '0' Scalar::Util: '0' - Sereal::Decoder: '4.017' - Sereal::Encoder: '4.017' + Sereal::Decoder: '4.018' + Sereal::Encoder: '4.018' Test::LongString: '0' Test::More: '0.88' Test::Warn: '0' @@ -26,11 +26,11 @@ - t - inc requires: - Sereal::Decoder: '4.017' - Sereal::Encoder: '4.017' + Sereal::Decoder: '4.018' + Sereal::Encoder: '4.018' perl: '5.008' resources: bugtracker: https://github.com/Sereal/Sereal/issues repository: git://github.com/Sereal/Sereal.git -version: '4.017' +version: '4.018' x_serialization_backend: 'CPAN::Meta::YAML version 0.018'