]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
This is 0.11 v0.11
authorVincent Pit <vince@profvince.com>
Sat, 26 Feb 2011 21:58:43 +0000 (22:58 +0100)
committerVincent Pit <vince@profvince.com>
Sat, 26 Feb 2011 21:58:43 +0000 (22:58 +0100)
Changes
META.yml
README
lib/Lexical/Types.pm

diff --git a/Changes b/Changes
index 00d07646bbd0a7600971560ba78438d516f1b700..33b88c17ca137dc6958176450ea32820aef57cf7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,12 @@
 Revision history for Lexical-Types
 
 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
 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
index 61dd4b02ec55f525b0ef5350571115c1d1c11752..99b00becdd5dc9280825693cb0a1928d23e6356c 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Lexical-Types
 --- #YAML:1.0
 name:               Lexical-Types
-version:            0.10
+version:            0.11
 abstract:           Extend the semantics of typed lexicals.
 author:
     - Vincent Pit <perl@profvince.com>
 abstract:           Extend the semantics of typed lexicals.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index 4d8dcdca62af38291d8766adada3aa9a0a2201c4..e76671a45965afc7fab59a456e623ee5ef8eead7 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
-    Version 0.10
+    Version 0.11
 
 SYNOPSIS
         { package Str; }
 
 SYNOPSIS
         { package Str; }
index ce3a076771aa1e7e92bad8325ee9d6b6f1fff38c..725204bedc6bf68d048317b0e2542b99a248512d 100644 (file)
@@ -11,13 +11,13 @@ Lexical::Types - Extend the semantics of typed lexicals.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.10
+Version 0.11
 
 =cut
 
 our $VERSION;
 BEGIN {
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.10';
+ $VERSION = '0.11';
 }
 
 =head1 SYNOPSIS
 }
 
 =head1 SYNOPSIS