Imported Upstream version 3.001.009
authorgregor herrmann <gregoa@debian.org>
Tue, 5 Aug 2014 22:15:40 +0000 (00:15 +0200)
committergregor herrmann <gregoa@debian.org>
Tue, 5 Aug 2014 22:15:40 +0000 (00:15 +0200)
META.json
META.yml
author_tools/hobodecoder.pl
lib/Sereal/Encoder.pm
t/lib/Sereal/TestSet.pm

index 82c26dc4d56edfe66286af9bace9cf0a3ebbb2c1..f2fb3e4ceeadb154e91c9928ac1568c9d7ebb3de 100644 (file)
--- a/META.json
+++ b/META.json
@@ -55,5 +55,5 @@
          "url" : "git://github.com/Sereal/Sereal.git"
       }
    },
-   "version" : "3.001_008"
+   "version" : "3.001_009"
 }
index 47b03f1beae121dfc738585432bc51c5e462d1f1..677e645dae39ae35f1f7cd3f372c56b34960d4ec 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -32,4 +32,4 @@ requires:
 resources:
   bugtracker: https://github.com/Sereal/Sereal/issues
   repository: git://github.com/Sereal/Sereal.git
-version: 3.001_008
+version: 3.001_009
index 3f1ec2fec4847338923ccb9efd74a126e2726201..6dc4c0ed8eae9671e20e1a40836b0dad1fc697f3 100644 (file)
@@ -10,12 +10,12 @@ BEGIN {
     eval '
         use Sereal::Encoder::Constants qw(:all);
         @constants= @Sereal::Encoder::Constants::EXPORT_OK;
-        print "Loaded constants from $INC{q(Sereal/Encoder/Constants.pm)}";
+        print "Loaded constants from $INC{q(Sereal/Encoder/Constants.pm)}\n";
         1;
     ' or do { $err= $@; eval '
         use Sereal::Decoder::Constants qw(:all);
         @constants= @Sereal::Decoder::Constants::EXPORT_OK;
-        print "Loaded constants from $INC{q(Sereal/Decoder/Constants.pm)}";
+        print "Loaded constants from $INC{q(Sereal/Decoder/Constants.pm)}\n";
         1;
     ' } or die "No encoder/decoder constants: $err\n$@";
 }
index 31129ea46ce1bb9296dfe2018b916ec51452b5b7..f9d17ca9c12f7e3f4fa52d154b228a7e7839f36e 100644 (file)
@@ -5,7 +5,7 @@ use warnings;
 use Carp qw/croak/;
 use XSLoader;
 
-our $VERSION = '3.001_008'; # Don't forget to update the TestCompat set for testing against installed decoders!
+our $VERSION = '3.001_009'; # 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.
index d3b9f54a0fd7837b1bf99466984c958e9596715d..021bc7bcb4f5c87298206b3483c896bf3f5e8293 100644 (file)
@@ -526,8 +526,7 @@ sub setup_tests {
             array(chr(SRL_HDR_FALSE),chr(SRL_HDR_TRUE)),
             "true/false",
             $Config{usethreads},                            # if this is true
-            array(chr(SRL_HDR_FALSE),chr(0b0000_0001)),     # the we will accept this
-            array(chr(0b0000_0000),chr(0b0000_0001)),       # or this if the test fails.
+            array(chr(SRL_HDR_FALSE),short_string("1")),    # the we will accept this
         ]
     );
 }