From: Vincent Pit Date: Tue, 28 Apr 2009 21:40:24 +0000 (+0200) Subject: This is 0.05 X-Git-Tag: v0.05^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=29249d65c1e4c2712ad16c72543cf98d5905102e This is 0.05 --- diff --git a/Changes b/Changes index 90a0e69..9784a33 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Lexical-Types +0.05 2009-04-28 21:40 UTC + + Fix : Building with PERL_IMPLICIT_SYS set (especially on Win32). + + Tst : Dieing in callbacks. + 0.04 2009-03-07 15:45 UTC + Chg : Some implementation of pointer table is now used internally. This should make thread safety more robust. diff --git a/META.yml b/META.yml index 807e6bb..9e8f58e 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Lexical-Types -version: 0.04 +version: 0.05 abstract: Extend the semantics of typed lexicals. author: - Vincent Pit @@ -20,12 +20,12 @@ resources: bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Lexical-Types homepage: http://search.cpan.org/dist/Lexical-Types/ license: http://dev.perl.org/licenses/ - repository: http://git.profvince.com/perl/modules/Lexical-Types.git + repository: http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git no_index: directory: - t - inc -generated_by: ExtUtils::MakeMaker version 6.48 +generated_by: ExtUtils::MakeMaker version 6.50 meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 diff --git a/README b/README index 0d8a7a8..8aba1f6 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Lexical::Types - Extend the semantics of typed lexicals. VERSION - Version 0.04 + Version 0.05 SYNOPSIS { package Str; } @@ -172,12 +172,6 @@ INTEGRATION sub new { ... } CAVEATS - For "perl" to be able to parse "my Str $x", you need : - - * either the "Str" package to be defined ; - - * or for "Str" to be a constant sub returning a valid defined package. - The restrictions on the type (being either a defined package name or a constant) apply even if you use the 'as' option to redirect to another package, and are unlikely to find a workaround as this happens deep diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index 7cc33e7..0ac794a 100644 --- a/lib/Lexical/Types.pm +++ b/lib/Lexical/Types.pm @@ -13,13 +13,13 @@ Lexical::Types - Extend the semantics of typed lexicals. =head1 VERSION -Version 0.04 +Version 0.05 =cut our $VERSION; BEGIN { - $VERSION = '0.04'; + $VERSION = '0.05'; } =head1 SYNOPSIS