From f2bffd30ae0522a7e3297c067690a23fa70a5eff Mon Sep 17 00:00:00 2001 From: Yves Orton Date: Mon, 5 Jan 2015 15:36:13 +0100 Subject: [PATCH] Release v3.005 - Fixup various build issues related to signedness of (char) --- Perl/Decoder/Changes | 12 +++++++++--- Perl/Decoder/lib/Sereal/Decoder.pm | 2 +- Perl/Encoder/Changes | 12 +++++++++--- Perl/Encoder/lib/Sereal/Encoder.pm | 2 +- Perl/Sereal/Changes | 10 ++++++++++ Perl/Sereal/Makefile.PL | 2 +- Perl/Sereal/lib/Sereal.pm | 6 +++--- 7 files changed, 34 insertions(+), 12 deletions(-) diff --git a/Perl/Decoder/Changes b/Perl/Decoder/Changes index 3ab4d7eb4..3b6fee4dc 100644 --- a/Perl/Decoder/Changes +++ b/Perl/Decoder/Changes @@ -1,8 +1,14 @@ Revision history for Perl extension Sereal-Decoder -* Warning: For a seamless upgrade, upgrade to version 3 -* of the decoder before upgrading to version 3 of the -* encoder! +**************************************************************** +* Warning: For a seamless upgrade, upgrade to version 3 * +* of the decoder before upgrading to version 3 of the * +* encoder! * +**************************************************************** + +3.005 Jan 05 2015 + * Build improvements related to char signedness being platform + dependent. 3.004 Dec 27 2014 * Performance optimizations and other miscellaneous changes. diff --git a/Perl/Decoder/lib/Sereal/Decoder.pm b/Perl/Decoder/lib/Sereal/Decoder.pm index fe49a1edb..9c002cf61 100644 --- a/Perl/Decoder/lib/Sereal/Decoder.pm +++ b/Perl/Decoder/lib/Sereal/Decoder.pm @@ -5,7 +5,7 @@ use warnings; use Carp qw/croak/; use XSLoader; -our $VERSION = '3.004'; # Don't forget to update the TestCompat set for testing against installed encoders! +our $VERSION = '3.005'; # Don't forget to update the TestCompat set for testing against installed encoders! our $XS_VERSION = $VERSION; $VERSION= eval $VERSION; # not for public consumption, just for testing. diff --git a/Perl/Encoder/Changes b/Perl/Encoder/Changes index 74262f7ba..2fd7ce178 100644 --- a/Perl/Encoder/Changes +++ b/Perl/Encoder/Changes @@ -1,8 +1,14 @@ Revision history for Perl extension Sereal-Encoder -* Warning: For a seamless upgrade, upgrade to version 3 -* of the decoder before upgrading to version 3 of the -* encoder! +**************************************************************** +* Warning: For a seamless upgrade, upgrade to version 3 * +* of the decoder before upgrading to version 3 of the * +* encoder! * +**************************************************************** + +3.005 Jan 05 2015 + * Build improvements related to char signedness being platform + dependent. 3.004 Dec 27 2014 * Performance optimizations and other miscellaneous changes. diff --git a/Perl/Encoder/lib/Sereal/Encoder.pm b/Perl/Encoder/lib/Sereal/Encoder.pm index 091853644..d946607d8 100644 --- a/Perl/Encoder/lib/Sereal/Encoder.pm +++ b/Perl/Encoder/lib/Sereal/Encoder.pm @@ -5,7 +5,7 @@ use warnings; use Carp qw/croak/; use XSLoader; -our $VERSION = '3.004'; # Don't forget to update the TestCompat set for testing against installed decoders! +our $VERSION = '3.005'; # 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. diff --git a/Perl/Sereal/Changes b/Perl/Sereal/Changes index 3489ae557..b08960a58 100644 --- a/Perl/Sereal/Changes +++ b/Perl/Sereal/Changes @@ -6,6 +6,16 @@ please see the Encoder and Decoder changelogs: * https://github.com/Sereal/Sereal/blob/master/Perl/Decoder/Changes * https://github.com/Sereal/Sereal/blob/master/Perl/Encoder/Changes +**************************************************************** +* Warning: For a seamless upgrade, upgrade to version 3 * +* of the decoder before upgrading to version 3 of the * +* encoder! * +**************************************************************** + +3.005 Jan 05 2015 + * Build improvements related to char signedness being platform + dependent. + 3.004 Dec 27 2014 * Performance optimizations and other miscellaneous changes. * Build improvements. diff --git a/Perl/Sereal/Makefile.PL b/Perl/Sereal/Makefile.PL index d95556cb1..c73adb3ee 100644 --- a/Perl/Sereal/Makefile.PL +++ b/Perl/Sereal/Makefile.PL @@ -4,7 +4,7 @@ use warnings; use ExtUtils::MakeMaker; -our $VERSION = '3.004'; +our $VERSION = '3.005'; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. diff --git a/Perl/Sereal/lib/Sereal.pm b/Perl/Sereal/lib/Sereal.pm index 3602d80be..ba32c1394 100644 --- a/Perl/Sereal/lib/Sereal.pm +++ b/Perl/Sereal/lib/Sereal.pm @@ -2,10 +2,10 @@ package Sereal; use 5.008; use strict; use warnings; -our $VERSION = '3.004'; +our $VERSION = '3.005'; our $XS_VERSION = $VERSION; $VERSION= eval $VERSION; -use Sereal::Encoder 3.004 qw(encode_sereal sereal_encode_with_object); -use Sereal::Decoder 3.004 qw(decode_sereal looks_like_sereal sereal_decode_with_object); +use Sereal::Encoder 3.005 qw(encode_sereal sereal_encode_with_object); +use Sereal::Decoder 3.005 qw(decode_sereal looks_like_sereal sereal_decode_with_object); use Exporter 'import'; our @EXPORT_OK = qw(