Skip to content

Commit

Permalink
Release v3.005 - Fixup various build issues related to signedness of …
Browse files Browse the repository at this point in the history
…(char)
  • Loading branch information
demerphq committed Jan 5, 2015
1 parent 745c526 commit f2bffd3
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 12 deletions.
12 changes: 9 additions & 3 deletions 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.
Expand Down
2 changes: 1 addition & 1 deletion Perl/Decoder/lib/Sereal/Decoder.pm
Expand Up @@ -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.
Expand Down
12 changes: 9 additions & 3 deletions 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.
Expand Down
2 changes: 1 addition & 1 deletion Perl/Encoder/lib/Sereal/Encoder.pm
Expand Up @@ -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.
Expand Down
10 changes: 10 additions & 0 deletions Perl/Sereal/Changes
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Perl/Sereal/Makefile.PL
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions Perl/Sereal/lib/Sereal.pm
Expand Up @@ -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(
Expand Down

0 comments on commit f2bffd3

Please sign in to comment.