From: Vincent Pit Date: Sun, 23 Jan 2011 16:44:38 +0000 (+0100) Subject: This is 0.46 X-Git-Tag: v0.46^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=cc99f7f4711b525f7d3b7c4480528b480eac0a48 This is 0.46 --- diff --git a/Changes b/Changes index d4de87c..b97a2e2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for Variable-Magic +0.46 2011-01-23 16:45 UTC + + Fix : [RT #64866] : Assertion failure with perl 5.13.9. + The real problem was that dispell() wasn't properly resetting + the magical sv flags, which became visible in the test suite + only with perl 5.13.9. + Thanks Joshua ben Jore for reporting. + 0.45 2010-11-21 23:15 UTC This is a maintenance release. The code contains no functional change. Users of 0.44 can skip this update. diff --git a/META.yml b/META.yml index a19272b..3ea6960 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Variable-Magic -version: 0.45 +version: 0.46 abstract: Associate user-defined magic to variables from Perl. author: - Vincent Pit diff --git a/README b/README index 1158f96..ac81e42 100644 --- a/README +++ b/README @@ -2,10 +2,10 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.45 + Version 0.46 SYNOPSIS - use Variable::Magic qw/wizard cast VMG_OP_INFO_NAME/; + use Variable::Magic qw; { # A variable tracer my $wiz = wizard set => sub { print "now set to ${$_[0]}!\n" }, @@ -363,7 +363,7 @@ COOKBOOK { package Magical::UserData; - use Variable::Magic qw/wizard cast getdata/; + use Variable::Magic qw; my $wiz = wizard data => sub { \$_[1] }; @@ -543,7 +543,7 @@ SUPPORT . COPYRIGHT & LICENSE - Copyright 2007,2008,2009,2010 Vincent Pit, all rights reserved. + Copyright 2007,2008,2009,2010,2011 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/Variable/Magic.pm b/lib/Variable/Magic.pm index c52dcc8..141d966 100644 --- a/lib/Variable/Magic.pm +++ b/lib/Variable/Magic.pm @@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl. =head1 VERSION -Version 0.45 +Version 0.46 =cut our $VERSION; BEGIN { - $VERSION = '0.45'; + $VERSION = '0.46'; } =head1 SYNOPSIS