New Upstream Release - libsereal-encoder-perl

Ready changes

Summary

Merged new upstream version: 5.004+ds (was: 5.003+ds).

Diff

diff --git a/Changes b/Changes
index df56f76..ab23841 100644
--- a/Changes
+++ b/Changes
@@ -5,6 +5,11 @@ Revision history for Perl extension Sereal-Encoder
 *          of the decoder before upgrading to version 5 of the *
 *          encoder!                                            *
 ****************************************************************
+5.004
+    * Decoder fixes: Fix thaw ordering for frozen objects. Nested THAW
+      operations now happen in the documented LIFO order. Thanks to Marco 
+      Fontani for the report.
+
 5.003
     * Production release of 5.002_001 and 5.002_002
     * OpenBSD build fixes. Gracious thanks to Andrew Hewus Fresh
diff --git a/META.json b/META.json
index fde5d12..863b585 100644
--- 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.62, CPAN::Meta::Converter version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.70, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
@@ -29,7 +29,7 @@
             "File::Spec" : "0",
             "Hash::Util" : "0",
             "Scalar::Util" : "0",
-            "Sereal::Decoder" : "5.003",
+            "Sereal::Decoder" : "5.004",
             "Test::Deep" : "0",
             "Test::Differences" : "0",
             "Test::LongString" : "0",
@@ -45,7 +45,7 @@
       },
       "runtime" : {
          "requires" : {
-            "Sereal::Decoder" : "5.003",
+            "Sereal::Decoder" : "5.004",
             "XSLoader" : "0",
             "perl" : "5.008"
          }
@@ -56,7 +56,7 @@
             "File::Spec" : "0",
             "Hash::Util" : "0",
             "Scalar::Util" : "0",
-            "Sereal::Decoder" : "5.003",
+            "Sereal::Decoder" : "5.004",
             "Test::Deep" : "0",
             "Test::Differences" : "0",
             "Test::LongString" : "0",
@@ -75,6 +75,6 @@
          "url" : "git://github.com/Sereal/Sereal.git"
       }
    },
-   "version" : "5.003",
-   "x_serialization_backend" : "JSON::PP version 4.06"
+   "version" : "5.004",
+   "x_serialization_backend" : "JSON::PP version 4.16"
 }
diff --git a/META.yml b/META.yml
index 503e097..de2260d 100644
--- a/META.yml
+++ b/META.yml
@@ -10,7 +10,7 @@ build_requires:
   File::Spec: '0'
   Hash::Util: '0'
   Scalar::Util: '0'
-  Sereal::Decoder: '5.003'
+  Sereal::Decoder: '5.004'
   Test::Deep: '0'
   Test::Differences: '0'
   Test::LongString: '0'
@@ -20,7 +20,7 @@ configure_requires:
   Devel::CheckLib: '1.16'
   ExtUtils::MakeMaker: '7.0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.70, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -31,11 +31,11 @@ no_index:
     - t
     - inc
 requires:
-  Sereal::Decoder: '5.003'
+  Sereal::Decoder: '5.004'
   XSLoader: '0'
   perl: '5.008'
 resources:
   bugtracker: https://github.com/Sereal/Sereal/issues
   repository: git://github.com/Sereal/Sereal.git
-version: '5.003'
+version: '5.004'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/Makefile.PL b/Makefile.PL
index f6a27ff..1747ca2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -6,7 +6,7 @@ use warnings;
 use ExtUtils::MakeMaker;
 use Config;
 
-our $VERSION= '5.003'; # what version are we and what version of Decoder do we need.
+our $VERSION= '5.004'; # what version are we and what version of Decoder do we need.
 $VERSION = eval $VERSION or die "WTF: $VERSION: $@"; # deal with underbars
 
 my $shared_dir= "../shared";
diff --git a/debian/changelog b/debian/changelog
index d1ee790..ed7ebff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libsereal-encoder-perl (5.004+ds-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Fri, 26 May 2023 01:49:11 -0000
+
 libsereal-encoder-perl (5.003+ds-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/lib/Sereal/Encoder.pm b/lib/Sereal/Encoder.pm
index c5170c2..2ad8e87 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= '5.003';
+our $VERSION= '5.004';
 our $XS_VERSION= $VERSION; $VERSION= eval $VERSION;
 
 # Make sure to keep these constants in sync with the C code in srl_encoder.c.
diff --git a/lib/Sereal/Encoder/Constants.pm b/lib/Sereal/Encoder/Constants.pm
index 480adf2..12aa0d6 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= '5.003';
+our $VERSION= '5.004';
 
 our ( @EXPORT_OK, %DEFINE, %TAG_INFO_HASH, @TAG_INFO_ARRAY );
 

More details

Full run details

Historical runs