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.
"Vincent Pit <perl@profvince.com>"
],
"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"
],
"ExtUtils::MakeMaker" : "0",
"Test::More" : "0",
"XSLoader" : "0",
- "constant" : "0"
+ "constant" : "0",
+ "lib" : "0"
}
},
"configure" : {
"requires" : {
"Carp" : "0",
"XSLoader" : "0",
- "perl" : "5.008003"
+ "perl" : "5.008004"
}
}
},
"url" : "http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git"
}
},
- "version" : "0.13"
+ "version" : "0.14"
}
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
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'
Lexical::Types - Extend the semantics of typed lexicals.
VERSION
- Version 0.13
+ Version 0.14
SYNOPSIS
{ package Str; }
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.
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
=head1 VERSION
-Version 0.13
+Version 0.14
=cut
our $VERSION;
BEGIN {
- $VERSION = '0.13';
+ $VERSION = '0.14';
}
=head1 SYNOPSIS