From: Vincent Pit Date: Fri, 15 May 2009 20:50:01 +0000 (+0200) Subject: This is 0.35 X-Git-Tag: v0.35^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=e18c1d80e8504bf852ae1a20fab97a826c7419b3 This is 0.35 --- diff --git a/Changes b/Changes index a024335..1299cbf 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,16 @@ Revision history for Variable-Magic +0.35 2009-05-15 20:50 UTC + This is a maintenance release. Users of 0.34 can skip this update. + + Chg : uvar magic used to be enabled for 5.9.5. It now requires 5.10 or + later. + + Fix : Silence compilation warnings for cxinc(). + + Rem : The workaround introduced in 0.31 for the "Unknown errors" issue + was removed, as regression tests show that 0.34 provides a + better fix. + + Tst : Skip t/40-threads.t on 5.8.x with old versions of threads and + threads::shared. + 0.34 2009-04-19 16:55 UTC + Fix : Destruction of wizards in require. + Fix : "panic: restartop" in 5.10 when dieing at compile time triggers diff --git a/META.yml b/META.yml index 50a9d89..7d10dbd 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Variable-Magic -version: 0.34 +version: 0.35 abstract: Associate user-defined magic to variables from Perl. author: - Vincent Pit @@ -23,7 +23,7 @@ resources: bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Magic homepage: http://search.cpan.org/dist/Variable-Magic/ license: http://dev.perl.org/licenses/ - repository: http://git.profvince.com/?p=perl/modules/Variable-Magic.git + repository: http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git no_index: directory: - t diff --git a/README b/README index c6f0d20..6607240 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.34 + Version 0.35 SYNOPSIS use Variable::Magic qw/wizard cast VMG_OP_INFO_NAME/; diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 1ae0f1c..44edfe6 100644 --- a/lib/Variable/Magic.pm +++ b/lib/Variable/Magic.pm @@ -13,13 +13,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl. =head1 VERSION -Version 0.34 +Version 0.35 =cut our $VERSION; BEGIN { - $VERSION = '0.34'; + $VERSION = '0.35'; } =head1 SYNOPSIS