]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.56 v0.56
authorVincent Pit <vince@profvince.com>
Wed, 11 Mar 2015 15:07:32 +0000 (12:07 -0300)
committerVincent Pit <vince@profvince.com>
Wed, 11 Mar 2015 15:07:32 +0000 (12:07 -0300)
Changes
META.json
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index 4ae98acaeec4b0d4ae40d078a7b56c4efabb9ef3..f7f4d867ef1458ba2b3e29a3d3411edb38eb395a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,22 @@
 Revision history for Variable-Magic
 
+0.56    2015-03-11 15:15 UTC
+        + Fix : [RT #101410] : Install fails in blead
+                Even though the change that caused this error was reverted from
+                blead, lvalue uses of ERRSV have been removed from this module
+                so that there will be no breakage when this change is possibly
+                reintroduced in the following months.
+                Thanks Dave Rolsky for reporting.
+        + Tst : $ENV{$Config{ldlibpthname}} is now preserved on all platforms,
+                which will address failures of t/17-ctl.t with unusual
+                compilers (like icc) that link all their compiled objects to
+                their own libraries.
+        + Tst : The global destruction test is now only run on perl 5.13.4 and
+                higher, and only if either Perl::Destruct::Level is installed
+                or PERL_DESTRUCT_LEVEL is set and the perl is a debugging perl.
+                This will solve rare crashes of t/15-self.t on perl 5.13.3 and
+                older.
+
 0.55    2014-10-20 23:45 UTC
         + Fix : [RT #99319] : t/18-opinfo.t: test failure due to change in
                 perl 5 blead
index c8984f40a3a4fa1ab74aca35f32e070cec91ecd1..edf7a9e79f97479795ce9205d0911ff16d1cca13 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.142690",
+   "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001",
    "license" : [
       "perl_5"
    ],
@@ -28,7 +28,8 @@
             "ExtUtils::MakeMaker" : "0",
             "Test::More" : "0",
             "XSLoader" : "0",
-            "base" : "0"
+            "base" : "0",
+            "lib" : "0"
          }
       },
       "configure" : {
@@ -60,5 +61,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
-   "version" : "0.55"
+   "version" : "0.56"
 }
index 2664b46d36c6d63ea200fe5c25adcb9fae9b7ef0..b4f5ecf248de6b07a1c9b73e6172b469ce26f0ad 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -10,11 +10,12 @@ build_requires:
   Test::More: '0'
   XSLoader: '0'
   base: '0'
+  lib: '0'
 configure_requires:
   Config: '0'
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690'
+generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -35,4 +36,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.55'
+version: '0.56'
diff --git a/README b/README
index e344be9d5592cfda31f45a83bc479fc8b2672523..c6dbb7d00c3b076ab1dc1b3d8535c2f7573f19cd 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.55
+    Version 0.56
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
@@ -602,7 +602,7 @@ SUPPORT
     <http://www.profvince.com/perl/cover/Variable-Magic>.
 
 COPYRIGHT & LICENSE
-    Copyright 2007,2008,2009,2010,2011,2012,2013,2014 Vincent Pit, all
+    Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all
     rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
index 617493527a21b124707e9e3b3dfc6929b5c27fde..b8f8c5e4bc122ea2495a2b7e54358674bf969ec6 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.55
+Version 0.56
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.55';
+ $VERSION = '0.56';
 }
 
 =head1 SYNOPSIS