From: Vincent Pit Date: Sat, 26 Feb 2011 21:58:43 +0000 (+0100) Subject: This is 0.11 X-Git-Tag: v0.11^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=01f4a56263ea94b515c77db74e3e918ef240f992 This is 0.11 --- diff --git a/Changes b/Changes index 00d0764..33b88c1 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for Lexical-Types +0.11 2011-02-26 22:00 UTC + + Fix : [RT #66164] : Lexical::Types hangs with PPI. + This was actually a regression introduced together with the new + peephole optimizer strategy, and that caused the pragma to hang + on constructs like "for (;;) { ... }". + Thanks Chisel Wright for reminding me about this issue. + 0.10 2011-01-03 20:35 UTC + Add : The new constant LT_FORKSAFE can be tested to know whether the module will behave nicely when fork()ing. It's currently always diff --git a/META.yml b/META.yml index 61dd4b0..99b00be 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Lexical-Types -version: 0.10 +version: 0.11 abstract: Extend the semantics of typed lexicals. author: - Vincent Pit diff --git a/README b/README index 4d8dcdc..e76671a 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Lexical::Types - Extend the semantics of typed lexicals. VERSION - Version 0.10 + Version 0.11 SYNOPSIS { package Str; } diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index ce3a076..725204b 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.10 +Version 0.11 =cut our $VERSION; BEGIN { - $VERSION = '0.10'; + $VERSION = '0.11'; } =head1 SYNOPSIS