Skip to content

Commit

Permalink
Perl: Change log and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tsee committed Oct 25, 2012
1 parent f9274f0 commit b9c1718
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions Perl/Decoder/Changes
Expand Up @@ -76,3 +76,4 @@ Revision history for Perl extension Sereal-Decoder
- Thread-safety fix on Perls >= 5.8.7. Sereal is still not thread-safe
on older Perls

0.16 - unreleased
4 changes: 2 additions & 2 deletions Perl/Decoder/lib/Sereal/Decoder.pm
Expand Up @@ -5,10 +5,10 @@ use warnings;
use Carp qw/croak/;
use XSLoader;

our $VERSION = '0.15';
our $VERSION = '0.16';

# not for public consumption, just for testing.
my $TestCompat = [qw( 0.15 0.13 0.12 0.11 0.10 0.09 0.08 0.07 0.06 )];
my $TestCompat = [qw( 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
6 changes: 6 additions & 0 deletions Perl/Encoder/Changes
Expand Up @@ -64,3 +64,9 @@ Revision history for Perl extension Sereal-Encoder
0.15 Wed Oct 17 13:00 2012
- Thread-safety fix on Perls >= 5.8.7. Sereal is still not thread-safe
on older Perls

0.16 Thu Oct 25 12:00 2012
- Re-entrancy fix for obscure cases like calling into Sereal from
$SIG{__DIE__} if the exception was thrown from within Sereal.
(A bit of a "don't do that" case)

4 changes: 2 additions & 2 deletions Perl/Encoder/lib/Sereal/Encoder.pm
Expand Up @@ -5,10 +5,10 @@ use warnings;
use Carp qw/croak/;
use XSLoader;

our $VERSION = '0.15';
our $VERSION = '0.16';

# not for public consumption, just for testing.
my $TestCompat = [qw( 0.14 0.13 0.12 0.11 0.10 0.09 0.08 0.07 0.06 )];
my $TestCompat = [qw( 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 b9c1718

Please sign in to comment.