"url" : "git://github.com/Sereal/Sereal.git"
}
},
- "version" : "3.001_008"
+ "version" : "3.001_009"
}
resources:
bugtracker: https://github.com/Sereal/Sereal/issues
repository: git://github.com/Sereal/Sereal.git
-version: 3.001_008
+version: 3.001_009
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$@";
}
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.
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
]
);
}