From: Vincent Pit Date: Fri, 25 Jun 2010 23:35:32 +0000 (+0200) Subject: This is 0.43 X-Git-Tag: v0.43^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=0552b1e308c11b5488b02b773e6a9529cd729710 This is 0.43 --- diff --git a/Changes b/Changes index f683a59..96e0ca0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ Revision history for Variable-Magic +0.43 2010-06-25 23:35 UTC + + Add : The new constant VMG_COMPAT_GLOB_GET tells you whether get magic + is called for globs. It's true starting perl 5.13.2. + + Chg : All callbacks are now called within an eval-like context. + Only free callbacks used to be called that way. + + Fix : Some exceptions thrown from a free callback could be lost. + + Fix : Croak messages could sometimes be repeated several times. + + Fix : t/41-clone.t segfaulting with perl 5.13.2. + 0.42 2010-05-19 00:15 UTC This is a maintenance release. The code contains no functional change. Users of 0.41 can skip this update. diff --git a/META.yml b/META.yml index 0768446..7e4ef86 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Variable-Magic -version: 0.42 +version: 0.43 abstract: Associate user-defined magic to variables from Perl. author: - Vincent Pit diff --git a/README b/README index ede1e61..46eb3db 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.42 + Version 0.43 SYNOPSIS use Variable::Magic qw/wizard cast VMG_OP_INFO_NAME/; @@ -329,6 +329,9 @@ CONSTANTS True for perls that don't call 'len' magic when taking the "length" of a magical scalar. + "VMG_COMPAT_GLOB_GET" + True for perls that call 'get' magic for operations on globs. + "VMG_PERL_PATCHLEVEL" The perl patchlevel this module was built with, or 0 for non-debugging perls. diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index 91f5341..2ad1315 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.42 +Version 0.43 =cut our $VERSION; BEGIN { - $VERSION = '0.42'; + $VERSION = '0.43'; } =head1 SYNOPSIS