]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.60 v0.60
authorVincent Pit <perl@profvince.com>
Tue, 6 Sep 2016 22:34:17 +0000 (19:34 -0300)
committerVincent Pit <perl@profvince.com>
Tue, 6 Sep 2016 22:34:17 +0000 (19:34 -0300)
Changes
META.json
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index a023cb805944a51634b8bb1ab493ab17e513cdf4..c7cd521d6cf1aa12c892055a5813ce60ed6407fa 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,14 @@
 Revision history for Variable-Magic
 
+0.60    2016-09-06 22:30 UTC
+        + Chg : A large chunk of boilerplate XS code, which is also used in
+                other XS modules, has been factored out of the main .xs file
+                to a collection of .h files in the xsh subdirectory.
+        + Fix : [RT #128989] : Bleadperl v5.25.3-266-g1d7e644 breaks V::M.
+                Len magic is no longer called for negative array indices
+                fetches, so the relevant tests are now skipped.
+                Thanks Andreas Koenig for reporting.
+
 0.59    2015-10-05 19:05 UTC
         + Chg : The magic callbacks are now always executed in a new stack.
                 This should have no negative impact (performance-wise or
index 924ecae2a9d506a3fe779ba1ac2639af6b5a7765..78b85e0fcdcfb036237741c91f5a4055c90e675c 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.1, CPAN::Meta::Converter version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
@@ -66,6 +66,6 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
-   "version" : "0.59",
-   "x_serialization_backend" : "JSON::PP version 2.27300"
+   "version" : "0.60",
+   "x_serialization_backend" : "JSON::PP version 2.27400"
 }
index 1d4ce20380313b9136073b79f2907e3158a5cabf..6dd009005a41612ae3ef026061771f82738315be 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.1, CPAN::Meta::Converter version 2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.24, 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.59'
-x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
+version: '0.60'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index ba89f24cb1cbd48730a3493fddd79f39005723e4..ab958ead3408030258b930b5ada23da01e5f95b8 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.59
+    Version 0.60
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
@@ -645,8 +645,8 @@ SUPPORT
         perldoc Variable::Magic
 
 COPYRIGHT & LICENSE
-    Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all
-    rights reserved.
+    Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 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 7f822335c2940ef127ea89f6271a6a7d5c0c92fe..0ca916b47e3d1938977b07e51c4a6ebed175dce0 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.59
+Version 0.60
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.59';
+ $VERSION = '0.60';
 }
 
 =head1 SYNOPSIS