Fix issue with croak_xs_usage() not being available in older perls. We use the version from Win32::API which had already solved the problem. See https://metacpan.org/source/BULKDD/Win32-API-0.77/API.h#L311 Thanks to bulk88 for pointing out the code.
Changes for version 2.070_102 - 2013-04-06
Fixes for how we load XS so Sereal.pm works properly with dev releases.
Add scalar_looks_like_sereal as a custom opcode From Zefram.
Changes for version 2.070_101 - 2013-04-06
Fix for newer perls.
Changes to 'fixver.pl' and version numbering so we do a 3 digit minor version, and a 3 digit dev version, so once this dev release cycle is done we will be at v2.071 everywhere. This eliminates a version numbering inconsistency in Sereal.pm from Encoder.pm and Decoder.pm
Changes for version 2.07_01 - 2014-03-26
Add sereal_decode_with_object(), functional/custom-opcode implementation of the OO interface, with much less overhead. In practice this will make a very modest impact on dumping, but if your applications needs it... Thanks to Zefram for the custom op implementation.
Resolved: [rt.cpan.org #93888] does not preserve special SV identity We now handle \!0 and \!1 properly. Being able to distinguish \undef from \{my $x= undef} is left for a new protocol release. Reported by Zefram.
Resolved [rt.cpan.org #93892] downgrade breaks unwritable strings When decoding a UTF8-on SV we now sv_mortalcopy() it before we sv_utf8_downgrade() it. This prevents us from modifying the buffer during deserialization. Reported By Zefram.