From: Vincent Pit Date: Wed, 6 Jan 2010 23:16:43 +0000 (+0100) Subject: This is 0.40 X-Git-Tag: v0.40^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=f14a41efb10560bf3eda1bf0d451953f51630bb2 This is 0.40 --- diff --git a/Changes b/Changes index 60eb548..c37d46a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Variable-Magic +0.40 2010-01-06 23:20 UTC + + Fix : Possible memory miswrites when passing data arguments to cast(). + + Fix : Minor C portability tweaks. + 0.39 2009-12-01 00:05 UTC + Add : You can use a function name as a callback by passing a string reference to wizard() instead of a code reference. diff --git a/META.yml b/META.yml index fe86c5b..52add99 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Variable-Magic -version: 0.39 +version: 0.40 abstract: Associate user-defined magic to variables from Perl. author: - Vincent Pit @@ -32,7 +32,7 @@ no_index: directory: - t - inc -generated_by: ExtUtils::MakeMaker version 6.55_02 +generated_by: ExtUtils::MakeMaker version 6.56 meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 diff --git a/README b/README index 0f2d459..23b5303 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Variable::Magic - Associate user-defined magic to variables from Perl. VERSION - Version 0.39 + Version 0.40 SYNOPSIS use Variable::Magic qw/wizard cast VMG_OP_INFO_NAME/; @@ -531,7 +531,7 @@ SUPPORT . COPYRIGHT & LICENSE - Copyright 2007-2009 Vincent Pit, all rights reserved. + Copyright 2007,2008,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/Variable/Magic.pm b/lib/Variable/Magic.pm index 69b338e..04ed9df 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.39 +Version 0.40 =cut our $VERSION; BEGIN { - $VERSION = '0.39'; + $VERSION = '0.40'; } =head1 SYNOPSIS