From: Vincent Pit Date: Sat, 4 Jul 2009 19:34:57 +0000 (+0200) Subject: This is 0.08 X-Git-Tag: v0.08^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=9b691511575ef55976d9640d65c007f1c6febe86;hp=560cde18a2e72b9d674617c7570cd3cafc498779 This is 0.08 --- diff --git a/Changes b/Changes index 827161c..819b9cb 100644 --- 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 diff --git a/META.yml b/META.yml index d9ba723..5630743 100644 --- 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 diff --git a/README b/README index fa968d5..f471942 100644 --- 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; } diff --git a/lib/Lexical/Types.pm b/lib/Lexical/Types.pm index 112c042..7ba7629 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.07 +Version 0.08 =cut our $VERSION; BEGIN { - $VERSION = '0.07'; + $VERSION = '0.08'; } =head1 SYNOPSIS