]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
This is 0.37 v0.37
authorVincent Pit <perl@profvince.com>
Tue, 12 Jul 2016 16:40:50 +0000 (13:40 -0300)
committerVincent Pit <perl@profvince.com>
Tue, 12 Jul 2016 16:40:50 +0000 (13:40 -0300)
Changes
META.json
META.yml
README
lib/indirect.pm

diff --git a/Changes b/Changes
index bb683074892e853e48e720e2341473d5ab671829..f8e7332b9f349f9c1863acbced4ec81b7a78a8fc 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
 Revision history for indirect
 
+0.37    2016-07-12 16:40 UTC
+        + Chg : A large chunk of boilerplate XS code, which is also used in
+                other XS modules, has been factored out of the main .xs file
+                to a collection of .h files in the xsh subdirectory.
+        + Fix : [RT #115392] : Intermittent segfaults with heredocs
+                Heredocs should now be handled correctly.
+                Thanks Graham Knop for reporting.
+
 0.36    2015-07-17 22:15 UTC
         + Fix : [RT #104312] : fatal hides perl errors in modules
                 no indirect 'fatal' will no longer hide compilation errors
index c0aecd4afe004a2b99d4a51cf7eba36450b61c79..6a02b5c9d10a761bf990d932333303487228b814 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 7.0401, CPAN::Meta::Converter version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.18, CPAN::Meta::Converter version 2.150005",
    "license" : [
       "perl_5"
    ],
@@ -25,6 +25,7 @@
             "Carp" : "0",
             "Config" : "0",
             "ExtUtils::MakeMaker" : "0",
+            "File::Spec" : "0",
             "IO::Handle" : "0",
             "IO::Select" : "0",
             "IPC::Open3" : "0",
@@ -62,6 +63,6 @@
          "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
       }
    },
-   "version" : "0.36",
-   "x_serialization_backend" : "JSON::PP version 2.27300"
+   "version" : "0.37",
+   "x_serialization_backend" : "JSON::PP version 2.27400"
 }
index 6144a7092837caac6f033090d56e67fa848bc043..1fa872d68c96404d373e0a76dbcd1923727ab1bd 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -6,6 +6,7 @@ build_requires:
   Carp: '0'
   Config: '0'
   ExtUtils::MakeMaker: '0'
+  File::Spec: '0'
   IO::Handle: '0'
   IO::Select: '0'
   IPC::Open3: '0'
@@ -18,7 +19,7 @@ configure_requires:
   Config: '0'
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter version 2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.18, CPAN::Meta::Converter version 2.150005'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -37,5 +38,5 @@ 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.36'
-x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
+version: '0.37'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index fd9b6c4045437832b5cdea3399edc4dcbc570618..fa7c71bfd5c00cd4f18271b6d97c8c1d53c23250 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     indirect - Lexically warn about using the indirect method call syntax.
 
 VERSION
-    Version 0.36
+    Version 0.37
 
 SYNOPSIS
     In a script :
@@ -215,9 +215,6 @@ SUPPORT
 
         perldoc indirect
 
-    Tests code coverage report is available at
-    <http://www.profvince.com/perl/cover/indirect>.
-
 ACKNOWLEDGEMENTS
     Bram, for motivation and advices.
 
@@ -225,7 +222,7 @@ ACKNOWLEDGEMENTS
     reporting issues.
 
 COPYRIGHT & LICENSE
-    Copyright 2008,2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all
+    Copyright 2008,2009,2010,2011,2012,2013,2014,2015,2016 Vincent Pit, all
     rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
index fd488e78c91a093159e9346d389fa5c9872f8f98..e2196628ee00bb4d13874d89efe972bcfe0d5e5d 100644 (file)
@@ -11,13 +11,13 @@ indirect - Lexically warn about using the indirect method call syntax.
 
 =head1 VERSION
 
-Version 0.36
+Version 0.37
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.36';
+ $VERSION = '0.37';
 }
 
 =head1 SYNOPSIS