* of the decoder before upgrading to version 4 of the *
* encoder! *
****************************************************************
+4.007 Tues Apr 9, 2019
+ * Version bump only
+
+4.006 Mon Apr 8, 2019
+ * Version bump only
+
4.005 Tues Jan 23, 2018
* Document encode_to_file()
"Steffen Mueller <smueller@cpan.org>, Yves Orton <yves@cpan.org>"
],
"dynamic_config" : 1,
- "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010",
+ "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
"url" : "git://github.com/Sereal/Sereal.git"
}
},
- "version" : "4.005",
- "x_serialization_backend" : "JSON::PP version 2.27400"
+ "version" : "4.007",
+ "x_serialization_backend" : "JSON::PP version 2.27400_02"
}
configure_requires:
ExtUtils::MakeMaker: '7.0'
dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
resources:
bugtracker: https://github.com/Sereal/Sereal/issues
repository: git://github.com/Sereal/Sereal.git
-version: '4.005'
-x_serialization_backend: 'CPAN::Meta::YAML version 0.011'
+version: '4.007'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
use Carp qw/croak/;
use XSLoader;
-our $VERSION = '4.005'; # Don't forget to update the TestCompat set for testing against installed decoders!
+our $VERSION = '4.007'; # 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.
SRL_UNCOMPRESSED
SRL_SNAPPY
SRL_ZLIB
+ SRL_ZSTD
);
our %EXPORT_TAGS = (all => \@EXPORT_OK);
# export by default if run from command line
=head2 encode_to_file
- Sereal::Decoder->encode_to_file($file,$data,$append);
+ Sereal::Encoder->encode_to_file($file,$data,$append);
$encoder->encode_to_file($file,$data,$append);
Encode the data specified and write it the named file.
require Exporter;
our @ISA= qw(Exporter);
-our $VERSION = '4.005'; # Don't forget to update the TestCompat set for testing against installed encoders!
+our $VERSION = '4.007'; # Don't forget to update the TestCompat set for testing against installed encoders!
our (@EXPORT_OK, %DEFINE, %TAG_INFO_HASH, @TAG_INFO_ARRAY);