The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 015
META.json 55
META.yml 55
Makefile.PL 11
lib/Sereal.pm 33
5 files changed (This is a version diff) 1429
@@ -6,6 +6,21 @@ 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.
+  * Win32 fixes for weakrefs.
+
 3.003 Oct 19 2014
   * Niko Tyni fixed the 64-bit big endian Sereal bug! (Yay Niko!)
   * Setup META.yml correctly so that certain dependencies are
@@ -32,15 +32,15 @@
       },
       "runtime" : {
          "requires" : {
-            "Sereal::Decoder" : "3.003",
-            "Sereal::Encoder" : "3.003",
+            "Sereal::Decoder" : "3.005",
+            "Sereal::Encoder" : "3.005",
             "perl" : "5.008"
          }
       },
       "test" : {
          "requires" : {
-            "Sereal::Decoder" : "3.003",
-            "Sereal::Encoder" : "3.003",
+            "Sereal::Decoder" : "3.005",
+            "Sereal::Encoder" : "3.005",
             "Test::More" : "0.88"
          }
       }
@@ -55,5 +55,5 @@
          "url" : "git://github.com/Sereal/Sereal.git"
       }
    },
-   "version" : "3.003"
+   "version" : "3.005"
 }
@@ -4,8 +4,8 @@ author:
   - 'Steffen Mueller <smueller@cpan.org>'
 build_requires:
   ExtUtils::MakeMaker: '0'
-  Sereal::Decoder: '3.003'
-  Sereal::Encoder: '3.003'
+  Sereal::Decoder: '3.005'
+  Sereal::Encoder: '3.005'
   Test::More: '0.88'
 configure_requires:
   ExtUtils::MakeMaker: '0'
@@ -21,10 +21,10 @@ no_index:
     - t
     - inc
 requires:
-  Sereal::Decoder: '3.003'
-  Sereal::Encoder: '3.003'
+  Sereal::Decoder: '3.005'
+  Sereal::Encoder: '3.005'
   perl: '5.008'
 resources:
   bugtracker: https://github.com/Sereal/Sereal/issues
   repository: git://github.com/Sereal/Sereal.git
-version: '3.003'
+version: '3.005'
@@ -4,7 +4,7 @@ use warnings;
 
 use ExtUtils::MakeMaker;
 
-our $VERSION = '3.003';
+our $VERSION = '3.005';
 
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
@@ -2,10 +2,10 @@ package Sereal;
 use 5.008;
 use strict;
 use warnings;
-our $VERSION = '3.003';
+our $VERSION = '3.005';
 our $XS_VERSION = $VERSION; $VERSION= eval $VERSION;
-use Sereal::Encoder 3.003 qw(encode_sereal sereal_encode_with_object);
-use Sereal::Decoder 3.003 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(