From: Vincent Pit Date: Sun, 1 Sep 2013 17:50:02 +0000 (+0200) Subject: This is 0.53 X-Git-Tag: v0.53^0 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=ae89b589d2187cf0ed57bbb6132b9d4a8da29abb This is 0.53 --- diff --git a/Changes b/Changes index 748a344..5745f37 100644 --- 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 diff --git a/META.json b/META.json index 2127368..6d090d3 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Vincent Pit " ], "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" } diff --git a/META.yml b/META.yml index c8bfd90..6ccb80e 100644 --- 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 e04ba96..b77b845 100644 --- 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; @@ -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 . 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 diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm index f65e452..38d35af 100644 --- a/lib/Variable/Magic.pm +++ b/lib/Variable/Magic.pm @@ -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