]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
This is 0.08 v0.08
authorVincent Pit <vince@profvince.com>
Sat, 4 Jul 2009 19:34:57 +0000 (21:34 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 4 Jul 2009 19:34:57 +0000 (21:34 +0200)
Changes
META.yml
README
lib/Lexical/Types.pm

diff --git a/Changes b/Changes
index 827161cc52b71c9c986111af41affb906b921d4b..819b9cb3df0ef620e88abdc9f451ea00625065c1 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Lexical-Types
 
+0.08    2009-07-04 19:35 UTC
+        + Fix : Don't leak the old op info when a pointer table entry is reused.
+        + Fix : Possibly missed constructs with eval STRING called in a thread.
+
 0.07    2009-07-01 08:45 UTC
         + Chg : perl 5.8.x on MSWin32 is no longer considered as thread safe.
         + Fix : Work around a bug in perl 5.10.0 and lower that cause hints to
index d9ba72376aa318ca0c27ea408a0f14448fedeb15..5630743d534f93815cdd78dadf206f38770a511b 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Lexical-Types
-version:            0.07
+version:            0.08
 abstract:           Extend the semantics of typed lexicals.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index fa968d5144826ff67000066f02e07f94791549b3..f4719422677d85c47ee0fa2e21bd02c99949e63d 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
-    Version 0.07
+    Version 0.08
 
 SYNOPSIS
         { package Str; }
index 112c04236baa6956ca9fe48215b7e82f33178e1f..7ba7629b5474aa5e224e38e4e1aa28a9ce3ed846 100644 (file)
@@ -13,13 +13,13 @@ Lexical::Types - Extend the semantics of typed lexicals.
 
 =head1 VERSION
 
-Version 0.07
+Version 0.08
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.07';
+ $VERSION = '0.08';
 }
 
 =head1 SYNOPSIS