]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.40 v0.40
authorVincent Pit <vince@profvince.com>
Wed, 6 Jan 2010 23:16:43 +0000 (00:16 +0100)
committerVincent Pit <vince@profvince.com>
Wed, 6 Jan 2010 23:19:21 +0000 (00:19 +0100)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index 60eb5485c05371766b3b605a42f187b455009ac3..c37d46a752e90d3054d02fa93032cbf164c6f768 100644 (file)
--- 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.
index fe86c5bef3c11dbbec2e61931330f71120ab0dfa..52add9936611f6010905d5ec9d13622ae46a6cb6 100644 (file)
--- 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 <perl@profvince.com>
@@ -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 0f2d45931bb6c5ac0286db032e98c10e1a8daa6b..23b530367dba84697985fea191810749fa782cdf 100644 (file)
--- 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
     <http://www.profvince.com/perl/cover/Variable-Magic>.
 
 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.
index 69b338e67b2c4fe2c47a2cdf4568f2009339cb5c..04ed9df8fcd2556237d4d74ac5694390918969cc 100644 (file)
@@ -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