]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.30 v0.30
authorVincent Pit <vince@profvince.com>
Thu, 16 May 2013 15:57:49 +0000 (17:57 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 16 May 2013 15:57:49 +0000 (17:57 +0200)
Changes
META.json
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index 6c6cbe8b7f4ba8555c829d7c5d14ac7a7564ecc0..6daf8370597b291b1a132e61a2ebd01db9453d30 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,14 @@
 Revision history for indirect
 
 Revision history for indirect
 
+0.30    2013-05-16 15:55 UTC
+        + Fix : [RT #83806] : false positives with Devel::Declare
+                [RT #83839] : false positive using ? : syntax
+                Thanks Andrew Main for the patch.
+                However, please note that the reason this patch seems to fix
+                thinks has not been explained.
+        + Fix : [RT #84649] : incorrect RT link in metadata
+                Thanks Karen Etheridge for reporting.
+
 0.29    2013-03-05 01:30 UTC
         + Fix : [RT #83659] : false positives
                 Proper method calls in string-like environments (like
 0.29    2013-03-05 01:30 UTC
         + Fix : [RT #83659] : false positives
                 Proper method calls in string-like environments (like
index b69b53c8c7dcba9e1efca58d5181074ad12e6cd3..9d9291dcd311351ecc2d619bb893ea356253dd32 100644 (file)
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 1,
       "Vincent Pit <perl@profvince.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921",
+   "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880",
    "license" : [
       "perl_5"
    ],
    "license" : [
       "perl_5"
    ],
@@ -46,7 +46,7 @@
    "release_status" : "stable",
    "resources" : {
       "bugtracker" : {
    "release_status" : "stable",
    "resources" : {
       "bugtracker" : {
-         "web" : "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=indirect"
+         "web" : "http://rt.cpan.org/Dist/Display.html?Name=indirect"
       },
       "homepage" : "http://search.cpan.org/dist/indirect/",
       "license" : [
       },
       "homepage" : "http://search.cpan.org/dist/indirect/",
       "license" : [
@@ -56,5 +56,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
       }
    },
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
       }
    },
-   "version" : "0.29"
+   "version" : "0.30"
 }
 }
index db5e5ccca8b6ca6c2812534457748210fd4c3f21..12e88e6a2890f247fc32504c899bff614a308b52 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -12,7 +12,7 @@ configure_requires:
   Config: 0
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
   Config: 0
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921'
+generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.130880'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -27,8 +27,8 @@ requires:
   XSLoader: 0
   perl: 5.008001
 resources:
   XSLoader: 0
   perl: 5.008001
 resources:
-  bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=indirect
+  bugtracker: http://rt.cpan.org/Dist/Display.html?Name=indirect
   homepage: http://search.cpan.org/dist/indirect/
   license: http://dev.perl.org/licenses/
   repository: http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git
   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.29
+version: 0.30
diff --git a/README b/README
index f6b117687abc17b7fdd92f32c9e06323f6795576..3807d3b2cefc53d725e9cd962961d551a8586b98 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect method call syntax.
 
 VERSION
     indirect - Lexically warn about using the indirect method call syntax.
 
 VERSION
-    Version 0.29
+    Version 0.30
 
 SYNOPSIS
     In a script :
 
 SYNOPSIS
     In a script :
index 20827b4f1f8df116213b1801bdf71dd4d935726a..27747bfd6b2e5573dc6bbfefaae8dd238c96e624 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect method call syntax.
 
 =head1 VERSION
 
 
 =head1 VERSION
 
-Version 0.29
+Version 0.30
 
 =cut
 
 our $VERSION;
 BEGIN {
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.29';
+ $VERSION = '0.30';
 }
 
 =head1 SYNOPSIS
 }
 
 =head1 SYNOPSIS