]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.53 v0.53
authorVincent Pit <vince@profvince.com>
Sun, 1 Sep 2013 17:50:02 +0000 (19:50 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 1 Sep 2013 17:50:02 +0000 (19:50 +0200)
Changes
META.json
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index 748a3449179bd1ecca11d35fb55d7c59c7d60bdf..5745f37911a255033bf8f1747835a67120b5bd94 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for Variable-Magic
 
+0.53    2013-09-01 17:50 UTC
+        This is a maintenance release. The code contains no functional change.
+        Satisfied users of version 0.52 can skip this update.
+        + Fix : [RT #86338] : typo fix.
+                Thanks dsteinbrunner@pobox.com for the patch.
+        + Tst : Author tests are no longer bundled with this distribution.
+                They are only made available to authors in the git repository.
+
 0.52    2012-11-05 02:30 UTC
         + Add : The new constant VMG_COMPAT_SCALAR_NOLEN evaluates to true
                 when your perl does not call 'len' magic for scalars, which
index 21273689171cd46b50c4ec8ce9421adacd7bf174..6d090d3b880a2eb70bd6b84a95b94661f05248bd 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.6302, CPAN::Meta::Converter version 2.120921",
+   "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921",
    "license" : [
       "perl_5"
    ],
@@ -50,7 +50,7 @@
    "release_status" : "stable",
    "resources" : {
       "bugtracker" : {
-         "web" : "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Magic"
+         "web" : "http://rt.cpan.org/Dist/Display.html?Name=Variable-Magic"
       },
       "homepage" : "http://search.cpan.org/dist/Variable-Magic/",
       "license" : [
@@ -60,5 +60,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
-   "version" : "0.52"
+   "version" : "0.53"
 }
index c8bfd9048fb169f606c443008bfdf344124ecab1..6ccb80ecaa1c757cab507204b790481e0a15334e 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.6302, CPAN::Meta::Converter version 2.120921'
+generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -31,8 +31,8 @@ requires:
   base: 0
   perl: 5.008
 resources:
-  bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Variable-Magic
+  bugtracker: http://rt.cpan.org/Dist/Display.html?Name=Variable-Magic
   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.52
+version: 0.53
diff --git a/README b/README
index e04ba968017b28339c5c7dcc91c7a1bddf98aee5..b77b8453ef9536f4c6eec27afcb6de4103bd444f 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.52
+    Version 0.53
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
@@ -72,7 +72,7 @@ DESCRIPTION
 
         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.
+        differently depending on the type of the variable.
 
     *   Magic is invisible at Perl level.
 
@@ -560,12 +560,12 @@ DEPENDENCIES
     A C compiler. This module may happen to build with a C++ compiler as
     well, but don't rely on it, as no guarantee is made in this regard.
 
-    Carp (core since perl 5), XSLoader (since 5.006).
+    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.009004).
-    Glob tests need Symbol (since 5.002). Threads tests need threads and
-    threads::shared (both since 5.007003).
+    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.
@@ -593,7 +593,7 @@ SUPPORT
     <http://www.profvince.com/perl/cover/Variable-Magic>.
 
 COPYRIGHT & LICENSE
-    Copyright 2007,2008,2009,2010,2011,2012 Vincent Pit, all rights
+    Copyright 2007,2008,2009,2010,2011,2012,2013 Vincent Pit, all rights
     reserved.
 
     This program is free software; you can redistribute it and/or modify it
index f65e4529ebad928f3b6b5bbcd656ce141e52f89b..38d35af4657129812cfe1cab79d76e3d83effcfc 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.52
+Version 0.53
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.52';
+ $VERSION = '0.53';
 }
 
 =head1 SYNOPSIS