]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.62 v0.62
authorVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 16:35:03 +0000 (17:35 +0100)
committerVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 16:35:03 +0000 (17:35 +0100)
Changes
META.json
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index ae6f3879b8ca83ec9ca91d9322b360bc4f5d3df0..54284b5fafc5f195d8bfcb37a3650e74e33fc934 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Variable-Magic
 
+0.62    2017-11-04 16:35 UTC
+        + Fix : [RT #123314] : Compatibility with CV-in-stash optimisation
+                Thanks Father Chrysostomos for reporting and contributing a
+                patch.
+
 0.61    2017-01-24 15:30 UTC
         + Fix : [RT #115792] : Latest blead stack unwind work causes infloop
                 in a test.
index d6dc733fc848e5268b9d078b2cfacf74aaa46ddb..17b9e2aada208f729b79877e3bc52c75cfcd9b78 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,13 +4,13 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
-      "version" : "2"
+      "version" : 2
    },
    "name" : "Variable-Magic",
    "no_index" : {
@@ -66,6 +66,6 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
-   "version" : "0.61",
-   "x_serialization_backend" : "JSON::PP version 2.27400"
+   "version" : "0.62",
+   "x_serialization_backend" : "JSON::PP version 2.94"
 }
index 7122a5dd405e9fc61cb451a223c9edd8c796fcf6..30c72dd1b84bce76f06e2db7c0dae3b3118a47dd 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -20,7 +20,7 @@ configure_requires:
   Config: '0'
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.3, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -41,5 +41,5 @@ 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.61'
+version: '0.62'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index 8b92ba4c1f520f71d955397287249bd9fd4311ba..925545cca4d7c2f0874a66a3583eac87dcb0c240 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.61
+    Version 0.62
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
index 0a53da0f009d1e0be7512b57767deef575c102e4..e35a3c3aae72dcb35c8ec6897fe8199158ab8eba 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.61
+Version 0.62
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.61';
+ $VERSION = '0.62';
 }
 
 =head1 SYNOPSIS