Skip to content

Commit

Permalink
Perl: Change log and version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
tsee committed Nov 14, 2012
1 parent 905e5dd commit f0ca791
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions Perl/Decoder/Changes
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,4 @@ Revision history for Perl extension Sereal-Decoder

0.16 - unreleased
0.17 - unreleased
0.18 - unreleased
4 changes: 2 additions & 2 deletions Perl/Decoder/lib/Sereal/Decoder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ use warnings;
use Carp qw/croak/;
use XSLoader;

our $VERSION = '0.17';
our $VERSION = '0.18';

# not for public consumption, just for testing.
my $TestCompat = [qw( 0.16 0.15 0.14 0.13 0.12 0.11 0.10 0.09 0.08 0.07 0.06 )];
my $TestCompat = [qw( 0.17 0.16 0.15 0.14 0.13 0.12 0.11 0.10 0.09 0.08 0.07 0.06 )];
sub _test_compat {return(@$TestCompat, $VERSION)}

use Exporter 'import';
Expand Down
4 changes: 4 additions & 0 deletions Perl/Encoder/Changes
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,7 @@ Revision history for Perl extension Sereal-Encoder
using offsets instead.
This bug could cause you Perl to segfault.

0.18 Wed Nov 14 07:30 2012
* This release contains critical bug fixes *
- Fix output data corruption in encoder when serializing an incompatible
data structure with refcount > 1 with the "stringify_unknown" option.
4 changes: 2 additions & 2 deletions Perl/Encoder/lib/Sereal/Encoder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ use warnings;
use Carp qw/croak/;
use XSLoader;

our $VERSION = '0.17';
our $VERSION = '0.18';

# not for public consumption, just for testing.
my $TestCompat = [qw( 0.16 0.15 0.14 0.13 0.12 0.11 0.10 0.09 0.08 0.07 0.06 )];
my $TestCompat = [qw( 0.17 0.16 0.15 0.14 0.13 0.12 0.11 0.10 0.09 0.08 0.07 0.06 )];
sub _test_compat {return(@$TestCompat, $VERSION)}

use Exporter 'import';
Expand Down

0 comments on commit f0ca791

Please sign in to comment.