]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.51 v0.51
authorVincent Pit <vince@profvince.com>
Sat, 18 Aug 2012 15:00:32 +0000 (17:00 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 18 Aug 2012 15:00:32 +0000 (17:00 +0200)
Changes
META.json
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index 4ad0f49fb3584999e7a7fc6fd1e3c0517ef1bbe3..2c1ca8d2cb0fee0dba031c93e96f8e9afacf5cb7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,17 @@
 Revision history for Variable-Magic
 
+0.51    2012-08-18 15:00 UTC
+        + Fix : It is now safe to call dispell() from inside 'free', 'copy' and
+                'uvar' callbacks to dispell the magic currently in use.
+                Thanks Clinton Gormley for reporting.
+        + Fix : Exceptions thrown from inside a 'free' callback are now always
+                consistently propagated outside of the callback. They used to
+                be lost when the 'free' callback was invoked at the end of an
+                eval block or string.
+        + Fix : The 'reset RMG flag' workaroundn used to allow wizards with
+                both 'uvar' and 'clear' magics to be cast onto a hash, has been
+                made thread-safe.
+
 0.50    2012-06-24 23:00 UTC
         + Fix : Less memory is leaked when a wizard is freed during global
                 destruction, or when an exception is thrown from a 'free'
index 556c5e48c22911da0569a51693cd4410eb4cdaf7..a1c163bb874c7d345058f8d117c064505db7eb5f 100644 (file)
--- a/META.json
+++ b/META.json
@@ -60,5 +60,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
-   "version" : "0.50"
+   "version" : "0.51"
 }
index 19949bfb009f4ea123e261df17cc74a780784808..ea2399acada33e4e9cf934d1d69e5ba20d12e859 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -35,4 +35,4 @@ resources:
   homepage: http://search.cpan.org/dist/Variable-Magic/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git
-version: 0.50
+version: 0.51
diff --git a/README b/README
index cc595c27747557e242836547d9149cf9dcd8842b..a7c09596b439f0f84ca65e2e4514f7c2b4a7a846 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.50
+    Version 0.51
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
@@ -63,13 +63,18 @@ DESCRIPTION
         the correct "Tie::Std*" class and overriding individual methods in
         your own class.
 
+    *   Magic is multivalued.
+
+        You can safely apply different kinds of magics to the same variable,
+        and each of them will be invoked successively.
+
     *   Magic is type-agnostic.
 
         The same magic can be applied on scalars, arrays, hashes, subs or
         globs. But the same hook (see below for a list) may trigger
         differently depending on the the type of the variable.
 
-    *   Magic is invisible at the Perl level.
+    *   Magic is invisible at Perl level.
 
         Magical and non-magical variables cannot be distinguished with
         "ref", "tied" or another trick.
@@ -111,9 +116,11 @@ DESCRIPTION
 
     *   *free*
 
-        This magic is called when an object is destroyed as the result of
-        the variable going out of scope (but not when the variable is
-        undefined).
+        This magic is called when a variable is destroyed as the result of
+        going out of scope (but not when it is undefined). It behaves
+        roughly like Perl object destructors (i.e. "DESTROY" methods),
+        except that exceptions thrown from inside a *free* callback will
+        always be propagated to the surrounding code.
 
     *   *copy*
 
index 5b2086b0f52aba7f52da8ea66bde447e78748ede..2fe47c920388b748a0e41f74f87ddf6ec956c190 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.50
+Version 0.51
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.50';
+ $VERSION = '0.51';
 }
 
 =head1 SYNOPSIS