]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
This is 0.06 v0.06
authorVincent Pit <vince@profvince.com>
Fri, 1 May 2009 18:59:49 +0000 (20:59 +0200)
committerVincent Pit <vince@profvince.com>
Fri, 1 May 2009 18:59:49 +0000 (20:59 +0200)
Changes
META.yml
README
lib/Lexical/Types.pm

diff --git a/Changes b/Changes
index 9784a3394c1468150d60c51ee01d3ab14c20b827..59bb24d7ecf02916b2dbad254ceb49d85fe7ece3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Lexical-Types
 
+0.06    2009-05-01 19:00 UTC
+        + Fix : The pragma now properly propagates into threaded eval STRING,
+                effectively making the module thread safe. The new LT_THREADSAFE
+                constant can be used to know whether the module could have been
+                built with thread safety features enabled.
+
 0.05    2009-04-28 21:40 UTC
         + Fix : Building with PERL_IMPLICIT_SYS set (especially on Win32).
         + Tst : Dieing in callbacks.
index 9e8f58ee203147cb7909e893e0669864580a8db3..ae2287eed8ec93d6b7b8b8b3d2ce89102c7565ca 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Lexical-Types
-version:            0.05
+version:            0.06
 abstract:           Extend the semantics of typed lexicals.
 author:
     - Vincent Pit <perl@profvince.com>
diff --git a/README b/README
index 8aba1f6361d3029fbf8ccc39d9e3794e87705418..196deda72a53eaecc2a7a04c50d6d00fd72f4d79 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
-    Version 0.05
+    Version 0.06
 
 SYNOPSIS
         { package Str; }
@@ -171,6 +171,10 @@ INTEGRATION
 
         sub new { ... }
 
+CONSTANTS
+  "LT_THREADSAFE"
+    True iff the module could have been built when thread-safety features.
+
 CAVEATS
     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
index 2999a764f7aa355b8d38c55d3edb9046caac9bc5..e2cc2003e704838e2b5a700f3d0411dfbdbbbf1a 100644 (file)
@@ -13,13 +13,13 @@ Lexical::Types - Extend the semantics of typed lexicals.
 
 =head1 VERSION
 
-Version 0.05
+Version 0.06
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.05';
+ $VERSION = '0.06';
 }
 
 =head1 SYNOPSIS