]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
This is 0.09 v0.09
authorVincent Pit <vince@profvince.com>
Sat, 2 Jan 2010 23:59:11 +0000 (00:59 +0100)
committerVincent Pit <vince@profvince.com>
Sat, 2 Jan 2010 23:59:11 +0000 (00:59 +0100)
Changes
META.yml
README
lib/Lexical/Types.pm

diff --git a/Changes b/Changes
index 819b9cb3df0ef620e88abdc9f451ea00625065c1..0db62606a2c2dcc8a3fab2a98f39ea4f0599f2e4 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,15 @@
 Revision history for Lexical-Types
 
+0.09    2010-01-03 00:00 UTC
+        + Fix : Building and testing with blead.
+        + Fix : Unbalanced scopes when skipping a typed declaration.
+        + Fix : Segfaults when Lexical::Types is loaded for the first time from
+                inside a thread.
+        + Fix : Leaks of memory associated with the root interpreter.
+        + Fix : Work around Kwalitee test misfailures.
+        + Opt : Less memory will be used for non-threaded perls version 5.10.0
+                and below, and for threaded perls from version 5.10.1.
+
 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.
index 5630743d534f93815cdd78dadf206f38770a511b..52278f9d0170dade6e84328375bc75acb42e5f63 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Lexical-Types
-version:            0.08
+version:            0.09
 abstract:           Extend the semantics of typed lexicals.
 author:
     - Vincent Pit <perl@profvince.com>
@@ -9,9 +9,11 @@ distribution_type:  module
 configure_requires:
     ExtUtils::MakeMaker:  0
 build_requires:
+    Carp:                 0
     constant:             0
     ExtUtils::MakeMaker:  0
     Test::More:           0
+    XSLoader:             0
 requires:
     Carp:      0
     perl:      5.008
@@ -25,7 +27,8 @@ no_index:
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.52
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
+dynamic_config:     1
diff --git a/README b/README
index f4719422677d85c47ee0fa2e21bd02c99949e63d..12f52f132e3e6c6c7045c73e83c7c7a4a76d3173 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
-    Version 0.08
+    Version 0.09
 
 SYNOPSIS
         { package Str; }
@@ -228,7 +228,7 @@ ACKNOWLEDGEMENTS
     Thanks Florian Ragwitz for suggesting the use of constants for types.
 
 COPYRIGHT & LICENSE
-    Copyright 2009 Vincent Pit, all rights reserved.
+    Copyright 2009,2010 Vincent Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index 39f043ba3e9b1ceec257a6f1fbf70bd0ff8d75a7..f59d8af02d3dc686fcb088cccb4a15975e7e59a7 100644 (file)
@@ -13,13 +13,13 @@ Lexical::Types - Extend the semantics of typed lexicals.
 
 =head1 VERSION
 
-Version 0.08
+Version 0.09
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.08';
+ $VERSION = '0.09';
 }
 
 =head1 SYNOPSIS