From: Vincent Pit Date: Sat, 4 Nov 2017 17:15:02 +0000 (+0100) Subject: This is 0.16 X-Git-Tag: v0.16^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=23835643676b714abfb9a3ec5690d44c9d124d38 This is 0.16 --- diff --git a/Changes b/Changes index bb8433f..6508ff2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Lexical-Types +0.16 2017-11-04 17:15 UTC + + Fix : Test failures on perl 5.27.5 and above. + 0.15 2015-12-21 15:30 UTC + Chg : The new environment variable to enable thread tests on older perls is PERL_FORCE_TEST_THREADS. Note that this variable diff --git a/META.json b/META.json index 6f495c4..28aedde 100644 --- a/META.json +++ b/META.json @@ -4,13 +4,13 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005", + "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : "2" + "version" : 2 }, "name" : "Lexical-Types", "no_index" : { @@ -25,6 +25,7 @@ "Carp" : "0", "Config" : "0", "ExtUtils::MakeMaker" : "0", + "File::Spec" : "0", "Test::More" : "0", "XSLoader" : "0", "constant" : "0", @@ -58,6 +59,6 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git" } }, - "version" : "0.15", - "x_serialization_backend" : "JSON::PP version 2.27300" + "version" : "0.16", + "x_serialization_backend" : "JSON::PP version 2.94" } diff --git a/META.yml b/META.yml index 54bf463..5c8cc72 100644 --- a/META.yml +++ b/META.yml @@ -6,6 +6,7 @@ build_requires: Carp: '0' Config: '0' ExtUtils::MakeMaker: '0' + File::Spec: '0' Test::More: '0' XSLoader: '0' constant: '0' @@ -14,7 +15,7 @@ configure_requires: Config: '0' ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005' +generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -33,5 +34,5 @@ resources: homepage: http://search.cpan.org/dist/Lexical-Types/ license: http://dev.perl.org/licenses/ repository: http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git -version: '0.15' +version: '0.16' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index 3b9f97d..a2df39d 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Lexical::Types - Extend the semantics of typed lexicals. VERSION - Version 0.15 + Version 0.16 SYNOPSIS { package Str; } @@ -254,8 +254,8 @@ ACKNOWLEDGEMENTS Thanks Florian Ragwitz for suggesting the use of constants for types. COPYRIGHT & LICENSE - Copyright 2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all rights - reserved. + Copyright 2009,2010,2011,2012,2013,2014,2015,2017 Vincent Pit, all + rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index cf49dd5..3b5691a 100644 --- a/lib/Lexical/Types.pm +++ b/lib/Lexical/Types.pm @@ -11,13 +11,13 @@ Lexical::Types - Extend the semantics of typed lexicals. =head1 VERSION -Version 0.15 +Version 0.16 =cut our $VERSION; BEGIN { - $VERSION = '0.15'; + $VERSION = '0.16'; } =head1 SYNOPSIS