]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.33 v0.33
authorVincent Pit <vince@profvince.com>
Mon, 29 Sep 2014 20:29:19 +0000 (22:29 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 29 Sep 2014 20:29:19 +0000 (22:29 +0200)
Changes
META.json
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index cc2be23b8e3a6784b0339240a5f8854262fdebb2..f35c85441f0e9a7055cc67aeceb9dcb440c4f2d6 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for indirect
 
+0.33    2014-09-29 20:20 UTC
+        + Fix : [RT #99083] : Breaks eval in an END block in Win32 pseudo-forks.
+                Thanks Graham Knop for reporting.
+        + Fix : Segfaults during global destruction of a thread or a
+                pseudo-fork.
+
 0.32    2014-09-21 20:15 UTC
         + Add : Support for the PERL_OP_PARENT optional feature introduced in
                 perl 5.21.2.
index 1a9de329f9b4266c7264a25f5b1c78564811fda7..c2a0b5c097d50d6c72a8c914a5498740d533cfe9 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.98, CPAN::Meta::Converter version 2.142060",
+   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690",
    "license" : [
       "perl_5"
    ],
@@ -56,5 +56,5 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
       }
    },
-   "version" : "0.32"
+   "version" : "0.33"
 }
index 88ba680b3573d11a10c38e77f203546e383744f5..39d6840cb75b47b82789b274fdbcc382a1572622 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.98, CPAN::Meta::Converter version 2.142060'
+generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690'
 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.32'
+version: '0.33'
diff --git a/README b/README
index f332f4a3f40185dcf03a234e65c9d096c6701711..6088d3085ac097a307c7a0be19c4fc09a77dab90 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect method call syntax.
 
 VERSION
-    Version 0.32
+    Version 0.33
 
 SYNOPSIS
     In a script :
@@ -170,6 +170,10 @@ CAVEATS
     is due to a shortcoming in the way perl handles the hints hash, which is
     addressed in perl 5.10.
 
+    Indirect constructs that appear in code "eval"'d during the global
+    destruction phase of a spawned thread or pseudo-fork (the processes used
+    internally for the "fork" emulation on Windows) are not reported.
+
     The search for indirect method calls happens before constant folding.
     Hence "my $x = new Class if 0" will be caught.
 
index 4426f7b13bdb6c36737c436bf7a460c863f9a560..9b83528b827ce05ee3ec7c629c795bd7dc4ae651 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect method call syntax.
 
 =head1 VERSION
 
-Version 0.32
+Version 0.33
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.32';
+ $VERSION = '0.33';
 }
 
 =head1 SYNOPSIS