]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.55 v0.55
authorVincent Pit <vince@profvince.com>
Mon, 20 Oct 2014 23:45:33 +0000 (21:45 -0200)
committerVincent Pit <vince@profvince.com>
Mon, 20 Oct 2014 23:45:33 +0000 (21:45 -0200)
Changes
META.json
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index f8a833d7ec1f52d0a10624797fbc4bc9510e7c67..4ae98acaeec4b0d4ae40d078a7b56c4efabb9ef3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Variable-Magic
 
+0.55    2014-10-20 23:45 UTC
+        + Fix : [RT #99319] : t/18-opinfo.t: test failure due to change in
+                perl 5 blead
+                The new METHOP op class added in perl 5.21.5 is now supported.
+                Thanks James E Keenan for reporting.
+
 0.54    2014-09-22 17:30 UTC
         + Add : The new constant VMG_COMPAT_CODE_COPY_CLONE evaluates to true
                 if your perl calls 'copy' magic when a magical code prototype
index 4e95a7860239a00f11bfc99da861301da3b62ec7..c8984f40a3a4fa1ab74aca35f32e070cec91ecd1 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 6.98, CPAN::Meta::Converter version 2.142060",
+   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690",
    "license" : [
       "perl_5"
    ],
@@ -60,5 +60,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
-   "version" : "0.54"
+   "version" : "0.55"
 }
index 8662de5863534b525f9d523f135d1fde4362e8c5..2664b46d36c6d63ea200fe5c25adcb9fae9b7ef0 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -14,7 +14,7 @@ configure_requires:
   Config: '0'
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060'
+generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -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.54'
+version: '0.55'
diff --git a/README b/README
index 23db4c31adf42365d74062a6f2a5684aeb67b401..e344be9d5592cfda31f45a83bc479fc8b2672523 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.54
+    Version 0.55
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
@@ -576,11 +576,6 @@ DEPENDENCIES
 
     Carp (core since perl 5), XSLoader (since 5.6.0).
 
-    Copy tests need Tie::Array (core since perl 5.005) and Tie::Hash (since
-    5.002). Some uvar tests need Hash::Util::FieldHash (since 5.9.4). Glob
-    tests need Symbol (since 5.002). Threads tests need threads and
-    threads::shared (both since 5.7.3).
-
 SEE ALSO
     perlguts and perlapi for internal information about magic.
 
index 2ebb5d65056a7802cc5ed9ddc1173ed602d3ba9a..1958edb496bd9df4f80d50dd0bf685afd6438e8b 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.54
+Version 0.55
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.54';
+ $VERSION = '0.55';
 }
 
 =head1 SYNOPSIS