]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.31 v0.31
authorVincent Pit <vince@profvince.com>
Thu, 5 Sep 2013 16:45:02 +0000 (18:45 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 5 Sep 2013 16:45:02 +0000 (18:45 +0200)
Changes
META.json
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 6daf8370597b291b1a132e61a2ebd01db9453d30..32e9949a5efdac741ec5f8b84265f15b2e18ad5e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,12 @@
 Revision history for indirect
 
+0.31    2013-09-05 16:45 UTC
+        + Fix : [RT #88428] : no indirect in eval can trigger for direct calls
+                on __PACKAGE__
+                Thanks Graham Knop for reporting.
+        + Tst : Author tests are no longer bundled with this distribution.
+                They are only made available to authors in the git repository.
+
 0.30    2013-05-16 15:55 UTC
         + Fix : [RT #83806] : false positives with Devel::Declare
                 [RT #83839] : false positive using ? : syntax
index 9d9291dcd311351ecc2d619bb893ea356253dd32..61e5408ecc6e97102ccae5e53f65afd88b4bc165 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.66, CPAN::Meta::Converter version 2.130880",
+   "generated_by" : "ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140",
    "license" : [
       "perl_5"
    ],
@@ -56,5 +56,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
       }
    },
-   "version" : "0.30"
+   "version" : "0.31"
 }
index 12e88e6a2890f247fc32504c899bff614a308b52..4251fca1da4a6f667425fd571e084575cb0bf20b 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -12,7 +12,7 @@ configure_requires:
   Config: 0
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880'
+generated_by: 'ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -31,4 +31,4 @@ resources:
   homepage: http://search.cpan.org/dist/indirect/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git
-version: 0.30
+version: 0.31
diff --git a/README b/README
index 3807d3b2cefc53d725e9cd962961d551a8586b98..0dd92add2476e4f7a1899c50e3765c3e10f18ce0 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect method call syntax.
 
 VERSION
-    Version 0.30
+    Version 0.31
 
 SYNOPSIS
     In a script :
@@ -179,7 +179,7 @@ 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 (standard since perl 5), XSLoader (since perl 5.006).
+    Carp (standard since perl 5), XSLoader (since perl 5.6.0).
 
 AUTHOR
     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
index 8cbb750b7ba555bb8a181a6e3afad7c70925f4f2..d73686851385b31d07162d15352eade6bcd41450 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect method call syntax.
 
 =head1 VERSION
 
-Version 0.30
+Version 0.31
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.30';
+ $VERSION = '0.31';
 }
 
 =head1 SYNOPSIS