In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/656d3f9a2ce7fdcdbecec968ce50147d17c391e1?hp=d9298c1a4c17b19f029937b286909a8af2862653>

- Log -----------------------------------------------------------------
commit 656d3f9a2ce7fdcdbecec968ce50147d17c391e1
Author: Steffen Mueller <smuel...@cpan.org>
Date:   Sat Jan 28 12:49:49 2012 +0100

    ExtUtils::ParseXS: Changelog, version bump for dev release
    
    Upgrade the version in ExtUtils::ParseXS to 3.13_01 for a development
    release.
-----------------------------------------------------------------------

Summary of changes:
 dist/ExtUtils-ParseXS/Changes                      |   16 ++++++++++++++++
 dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm      |    2 +-
 .../lib/ExtUtils/ParseXS/Constants.pm              |    2 +-
 .../lib/ExtUtils/ParseXS/CountLines.pm             |    2 +-
 .../lib/ExtUtils/ParseXS/Utilities.pm              |    2 +-
 dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm     |    2 +-
 6 files changed, 21 insertions(+), 5 deletions(-)

diff --git a/dist/ExtUtils-ParseXS/Changes b/dist/ExtUtils-ParseXS/Changes
index 4750a5d..50d12d4 100644
--- a/dist/ExtUtils-ParseXS/Changes
+++ b/dist/ExtUtils-ParseXS/Changes
@@ -1,5 +1,21 @@
 Revision history for Perl extension ExtUtils::ParseXS.
 
+3.13_01 - Sat Jan 29 12:45:00 CET 2012
+  - ExtUtils::Typemaps:
+    => Embedded typemap dumping: A method which will produce the
+       verbatim string for inclusion in XS.
+    => Introducing ExtUtils::Typemaps::Cmd, a helper module which
+       can produce embedded typemap strings via simple one-liners.
+       Useful for including typemaps from other modules in XS code
+       with INCLUDE_COMMAND. See "perldoc ExtUtils::Typemaps::Cmd".
+
+  - ExtUtils::ParseXS:
+    => Bugfix: Used to have parsing problems with embedded typemaps
+       occasionally.
+    => Better error messages on typemap-related issues. If a no
+       typemap was found for a given C type, list all mapped C types
+       so that the user hopefully spots his mistake easily.
+
 3.11 - Thu Dec 29 17:55:00 CET 2011
   - Version/distribution fixes.
 
diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm 
b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
index 6a314f8..c0affd3 100644
--- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
+++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
@@ -11,7 +11,7 @@ use Symbol;
 
 our $VERSION;
 BEGIN {
-  $VERSION = '3.13';
+  $VERSION = '3.13_01';
 }
 use ExtUtils::ParseXS::Constants $VERSION;
 use ExtUtils::ParseXS::CountLines $VERSION;
diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Constants.pm 
b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Constants.pm
index 5d62af7..e61fd33 100644
--- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Constants.pm
+++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Constants.pm
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Symbol;
 
-our $VERSION = '3.13';
+our $VERSION = '3.13_01';
 
 =head1 NAME
 
diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm 
b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm
index da14606..f78a464 100644
--- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm
+++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm
@@ -1,7 +1,7 @@
 package ExtUtils::ParseXS::CountLines;
 use strict;
 
-our $VERSION = '3.13';
+our $VERSION = '3.13_01';
 
 our $SECTION_END_MARKER;
 
diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm 
b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm
index 3851092..0406789 100644
--- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm
+++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm
@@ -6,7 +6,7 @@ use File::Spec;
 use lib qw( lib );
 use ExtUtils::ParseXS::Constants ();
 
-our $VERSION = '3.13';
+our $VERSION = '3.13_01';
 
 our (@ISA, @EXPORT_OK);
 @ISA = qw(Exporter);
diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm 
b/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm
index d8e1f5a..05dc2a9 100644
--- a/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm
+++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/Typemaps.pm
@@ -2,7 +2,7 @@ package ExtUtils::Typemaps;
 use 5.006001;
 use strict;
 use warnings;
-our $VERSION = '1.04';
+our $VERSION = '1.04_01';
 #use Carp qw(croak);
 
 require ExtUtils::ParseXS;

--
Perl5 Master Repository

Reply via email to