From: Vincent Pit Date: Sat, 14 Mar 2015 03:10:57 +0000 (-0300) Subject: This is 0.14 X-Git-Tag: v0.14^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=cccda15ab5ef0fac1393861ff95ff48c8b1abff0 This is 0.14 --- diff --git a/Changes b/Changes index fda117b..04b7af8 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,16 @@ Revision history for Lexical-Types +0.14 2015-03-14 03:10 UTC + + Chg : perl 5.8.4 is now required (instead of 5.8.3). + + Fix : [RT #100202] : Fix for 5.21.6-to-be. + Thanks Father Chrysostomos for reporting and contributing a + patch. + + Fix : Be really compatible with the optional OP_PARENT feature. + + Tst : $ENV{$Config{ldlibpthname}} is now preserved on all platforms, + which will address failures of t/81-threads-teardown.t with + unusual compilers (like icc) that link all their compiled + objects to their own libraries. + 0.13 2014-10-04 23:25 UTC + Add : Support for the PERL_OP_PARENT optional feature introduced in perl 5.21.2. diff --git a/META.json b/META.json index b2b6cce..b8a6b13 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "dynamic_config" : 1, - "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690", + "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001", "license" : [ "perl_5" ], @@ -27,7 +27,8 @@ "ExtUtils::MakeMaker" : "0", "Test::More" : "0", "XSLoader" : "0", - "constant" : "0" + "constant" : "0", + "lib" : "0" } }, "configure" : { @@ -40,7 +41,7 @@ "requires" : { "Carp" : "0", "XSLoader" : "0", - "perl" : "5.008003" + "perl" : "5.008004" } } }, @@ -57,5 +58,5 @@ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git" } }, - "version" : "0.13" + "version" : "0.14" } diff --git a/META.yml b/META.yml index e78e7ee..cc3cc0b 100644 --- a/META.yml +++ b/META.yml @@ -9,11 +9,12 @@ build_requires: Test::More: '0' XSLoader: '0' constant: '0' + lib: '0' configure_requires: Config: '0' ExtUtils::MakeMaker: '0' dynamic_config: 1 -generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690' +generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -26,10 +27,10 @@ no_index: requires: Carp: '0' XSLoader: '0' - perl: '5.008003' + perl: '5.008004' resources: bugtracker: http://rt.cpan.org/Dist/Display.html?Name=Lexical-Types 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.13' +version: '0.14' diff --git a/README b/README index ce2b7f7..e4eb74e 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Lexical::Types - Extend the semantics of typed lexicals. VERSION - Version 0.13 + Version 0.14 SYNOPSIS { package Str; } @@ -219,7 +219,7 @@ CAVEATS addressed in perl 5.10. DEPENDENCIES - perl 5.8.3. + perl 5.8.4. A C compiler. This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard. @@ -257,7 +257,7 @@ ACKNOWLEDGEMENTS Thanks Florian Ragwitz for suggesting the use of constants for types. COPYRIGHT & LICENSE - Copyright 2009,2010,2011,2012,2013,2014 Vincent Pit, all rights + Copyright 2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index 91c9a10..ea79e26 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.13 +Version 0.14 =cut our $VERSION; BEGIN { - $VERSION = '0.13'; + $VERSION = '0.14'; } =head1 SYNOPSIS