]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.29 v0.29
authorVincent Pit <vince@profvince.com>
Tue, 5 Mar 2013 01:30:05 +0000 (22:30 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 5 Mar 2013 01:30:05 +0000 (22:30 -0300)
Changes
META.json
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index fdf26ce384bf742b0a16ff6dc0416e6c92b9a5a5..6c6cbe8b7f4ba8555c829d7c5d14ac7a7564ecc0 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,17 @@
 Revision history for indirect
 
+0.29    2013-03-05 01:30 UTC
+        + Fix : [RT #83659] : false positives
+                Proper method calls in string-like environments (like
+                "@{[ $x->new ]}" will no longer be reported as indirect.
+                This was a regression in 0.28.
+                Thanks Andrew Main for reporting.
+        + Fix : Broken linkage on Windows with gcc 3.4, which appears in
+                particular when using ActivePerl's default compiler suite.
+                For those setups, the indirect shared library will now be
+                linked against the perl dll directly (instead of the import
+                library).
+
 0.28    2013-02-26 17:05 UTC
         + Fix : [RT #83450] : newlines confuse indirect
                 Perl sometimes resets the line buffer between the object and
index 23204b6025124c83d9b13940d90780e93b1d53e3..b69b53c8c7dcba9e1efca58d5181074ad12e6cd3 100644 (file)
--- a/META.json
+++ b/META.json
@@ -23,6 +23,7 @@
       "build" : {
          "requires" : {
             "Carp" : "0",
+            "Config" : "0",
             "ExtUtils::MakeMaker" : "0",
             "Test::More" : "0",
             "XSLoader" : "0"
@@ -30,6 +31,7 @@
       },
       "configure" : {
          "requires" : {
+            "Config" : "0",
             "ExtUtils::MakeMaker" : "0"
          }
       },
@@ -54,5 +56,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
       }
    },
-   "version" : "0.28"
+   "version" : "0.29"
 }
index fdb08c5b86416f55d19df95e3f47e691bc739e99..db5e5ccca8b6ca6c2812534457748210fd4c3f21 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -4,10 +4,12 @@ author:
   - 'Vincent Pit <perl@profvince.com>'
 build_requires:
   Carp: 0
+  Config: 0
   ExtUtils::MakeMaker: 0
   Test::More: 0
   XSLoader: 0
 configure_requires:
+  Config: 0
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
 generated_by: 'ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921'
@@ -29,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.28
+version: 0.29
diff --git a/README b/README
index d159e058b808da301add4aee6b5c44498c38ea25..f6b117687abc17b7fdd92f32c9e06323f6795576 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect method call syntax.
 
 VERSION
-    Version 0.28
+    Version 0.29
 
 SYNOPSIS
     In a script :
index 25fff0acb02b81480bd44770aae8b9fa7eaac5ab..20827b4f1f8df116213b1801bdf71dd4d935726a 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect method call syntax.
 
 =head1 VERSION
 
-Version 0.28
+Version 0.29
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.28';
+ $VERSION = '0.29';
 }
 
 =head1 SYNOPSIS