From: Vincent Pit Date: Sat, 2 Jan 2010 23:59:11 +0000 (+0100) Subject: This is 0.09 X-Git-Tag: v0.09^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=10f2056e8e60beb34bab8d23b0bbd316afc9cb0b This is 0.09 --- diff --git a/Changes b/Changes index 819b9cb..0db6260 100644 --- 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. diff --git a/META.yml b/META.yml index 5630743..52278f9 100644 --- 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 @@ -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 f471942..12f52f1 100644 --- 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. diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index 39f043b..f59d8af 100644 --- a/lib/Lexical/Types.pm +++ b/lib/Lexical/Types.pm @@ -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