]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
This is 0.05 v0.05
authorVincent Pit <vince@profvince.com>
Tue, 28 Apr 2009 21:40:24 +0000 (23:40 +0200)
committerVincent Pit <vince@profvince.com>
Tue, 28 Apr 2009 21:40:24 +0000 (23:40 +0200)
Changes
META.yml
README
lib/Lexical/Types.pm

diff --git a/Changes b/Changes
index 90a0e6922cb6bf7a8c13863538fcfd7fc5fe7dc5..9784a3394c1468150d60c51ee01d3ab14c20b827 100644 (file)
--- 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.
index 807e6bb80b833093ca1bed38f6eaba944ce33158..9e8f58ee203147cb7909e893e0669864580a8db3 100644 (file)
--- 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 <perl@profvince.com>
@@ -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 0d8a7a8877fb7c2628f3f1b5e3c5ad2e361d43d3..8aba1f6361d3029fbf8ccc39d9e3794e87705418 100644 (file)
--- 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
index 7cc33e7c25294f796262ed08b09b276bff7fd9fe..0ac794ab68cc7bb5706c890af23efd972b924e8e 100644 (file)
@@ -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