]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.43 v0.43
authorVincent Pit <vince@profvince.com>
Fri, 25 Jun 2010 23:35:32 +0000 (01:35 +0200)
committerVincent Pit <vince@profvince.com>
Fri, 25 Jun 2010 23:35:32 +0000 (01:35 +0200)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index f683a5997bad70b0b6a281ddd64546aa17728589..96e0ca010f9a75d6f9e9238bc541834a23fa649e 100644 (file)
--- 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.
index 07684462d4878c825e3116d0318afee924abb344..7e4ef86af64b318b038e21ff420c168dcd2ed163 100644 (file)
--- 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 <perl@profvince.com>
diff --git a/README b/README
index ede1e61dc345f0094d0f9a0cf7b9e9fcb4a07578..46eb3db64b508ca496551b307fb9b4090ae7e1cb 100644 (file)
--- 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.
index 91f53413c40f6a79973e417b5b71c9a0729f0009..2ad1315d77d5e5c112e09f8ca3e867a96b45d9ca 100644 (file)
@@ -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