From: gregor herrmann Date: Mon, 30 Nov 2015 22:14:44 +0000 (+0100) Subject: Imported Upstream version 3.009 X-Git-Tag: archive/raspbian/4.017+ds-1+rpi1~1^2~3^2~9 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=45abd0b92820848d0235d6e7cab9c5812dc050ed;p=libsereal-encoder-perl.git Imported Upstream version 3.009 --- diff --git a/Changes b/Changes index 0d32c09..214fa49 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,9 @@ Revision history for Perl extension Sereal-Encoder * of the decoder before upgrading to version 3 of the * * encoder! * **************************************************************** +3.009 Nov 30 2015 + * Re-relase 3.008 with updated META files. + 3.008 Nov 27 2015 * FIX: Make sure that reserializing a data structure created using alias_varint_under does not produce a corrupted dataset. diff --git a/META.json b/META.json index 1edb16b..e613c80 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Steffen Mueller , Yves Orton " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.133380", + "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150001", "license" : [ "perl_5" ], @@ -19,6 +19,37 @@ "inc" ] }, + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::ParseXS" : "2.21", + "File::Find" : "0", + "File::Path" : "0" + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : "7.0" + } + }, + "runtime" : { + "requires" : { + "XSLoader" : "0", + "perl" : "5.008" + } + }, + "test" : { + "requires" : { + "Data::Dumper" : "0", + "File::Spec" : "0", + "Scalar::Util" : "0", + "Sereal::Decoder" : "3.00", + "Test::LongString" : "0", + "Test::More" : "0.88", + "Test::Warn" : "0" + } + } + }, "release_status" : "stable", "resources" : { "bugtracker" : { @@ -29,5 +60,5 @@ "url" : "git://github.com/Sereal/Sereal.git" } }, - "version" : "3.008" + "version" : "3.009" } diff --git a/META.yml b/META.yml index 7c0ec83..cbd3a57 100644 --- a/META.yml +++ b/META.yml @@ -2,19 +2,34 @@ abstract: 'Fast, compact, powerful binary serialization' author: - 'Steffen Mueller , Yves Orton ' -build_requires: {} +build_requires: + Data::Dumper: '0' + ExtUtils::ParseXS: '2.21' + File::Find: '0' + File::Path: '0' + File::Spec: '0' + Scalar::Util: '0' + Sereal::Decoder: '3.00' + Test::LongString: '0' + Test::More: '0.88' + Test::Warn: '0' +configure_requires: + ExtUtils::MakeMaker: '7.0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.133380' +generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150001' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html - version: 1.4 + version: '1.4' name: Sereal-Encoder no_index: directory: - t - inc +requires: + XSLoader: '0' + perl: '5.008' resources: bugtracker: https://github.com/Sereal/Sereal/issues repository: git://github.com/Sereal/Sereal.git -version: 3.008 +version: '3.009' diff --git a/lib/Sereal/Encoder.pm b/lib/Sereal/Encoder.pm index 431a131..94fd0f8 100644 --- a/lib/Sereal/Encoder.pm +++ b/lib/Sereal/Encoder.pm @@ -5,7 +5,7 @@ use warnings; use Carp qw/croak/; use XSLoader; -our $VERSION = '3.008'; # Don't forget to update the TestCompat set for testing against installed decoders! +our $VERSION = '3.009'; # 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/lib/Sereal/Encoder/Constants.pm b/lib/Sereal/Encoder/Constants.pm index bd33273..6eed64b 100644 --- a/lib/Sereal/Encoder/Constants.pm +++ b/lib/Sereal/Encoder/Constants.pm @@ -4,7 +4,7 @@ use warnings; require Exporter; our @ISA= qw(Exporter); -our $VERSION = '3.008'; # Don't forget to update the TestCompat set for testing against installed encoders! +our $VERSION = '3.009'; # Don't forget to update the TestCompat set for testing against installed encoders! our (@EXPORT_OK, %DEFINE, %TAG_INFO_HASH, @TAG_INFO_ARRAY);