Update ExtUtils-ParseXS to CPAN version 3.07
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Wed, 7 Dec 2011 19:52:05 +0000 (19:52 +0000)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Wed, 7 Dec 2011 19:52:05 +0000 (19:52 +0000)
  [DELTA]

  3.07 - Wed Dec  7 14:10:00 CET 2011
    - Fix inconsistent versioning in 3.06.

  3.06 - Fri Dec  2 08:10:00 CET 2011

    - Fix Cygwin issues [Tony Cook]
      avoid conflicting static / dllexport on legacy perls too
      This probably fixes rt.cpan.org 72313 and 71964.
      (3928a66ad4bd8aee704eda1942b7877c0ff1ab2c in core)

    - Convert ` to ' [James Keenan]
      55bee391aeff3c3b8d22fa4ce5491ee9440028aa and
      6dfee1ec62c64d7afe8ced4650596dd9e7f71a63 in core

    - Avoid some test-time warnings [Zefram]
      97bae9c59cd181b3b54061213ec1fdce0ccb30d4 in core

Porting/Maintainers.pl
dist/ExtUtils-ParseXS/Changes
dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Constants.pm
dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/CountLines.pm
dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/Utilities.pm
pod/perldelta.pod

index ab6e081..b344db3 100755 (executable)
@@ -757,7 +757,7 @@ use File::Glob qw(:case);
     'ExtUtils::ParseXS' =>
        {
        'MAINTAINER'    => 'smueller',
-       'DISTRIBUTION'  => 'SMUELLER/ExtUtils-ParseXS-3.06.tar.gz',
+       'DISTRIBUTION'  => 'SMUELLER/ExtUtils-ParseXS-3.07.tar.gz',
        'FILES'         => q[dist/ExtUtils-ParseXS],
        'UPSTREAM'      => 'blead',
        },
index a416701..f325926 100644 (file)
@@ -1,5 +1,22 @@
 Revision history for Perl extension ExtUtils::ParseXS.
 
+3.07 - Wed Dec  7 14:10:00 CET 2011
+  - Fix inconsistent versioning in 3.06.
+
+3.06 - Fri Dec  2 08:10:00 CET 2011
+
+  - Fix Cygwin issues [Tony Cook]
+    avoid conflicting static / dllexport on legacy perls too
+    This probably fixes rt.cpan.org 72313 and 71964.
+    (3928a66ad4bd8aee704eda1942b7877c0ff1ab2c in core)
+
+  - Convert ` to ' [James Keenan]
+    55bee391aeff3c3b8d22fa4ce5491ee9440028aa and
+    6dfee1ec62c64d7afe8ced4650596dd9e7f71a63 in core
+
+  - Avoid some test-time warnings [Zefram]
+    97bae9c59cd181b3b54061213ec1fdce0ccb30d4 in core
+
 3.05 - Wed Oct  5 08:14:00 CET 2011
 
   - No functional changes, promoted to stable release.
index 2c0af41..77b0978 100644 (file)
@@ -11,7 +11,7 @@ use Symbol;
 
 our $VERSION;
 BEGIN {
-  $VERSION = '3.06';
+  $VERSION = '3.07';
 }
 use ExtUtils::ParseXS::Constants $VERSION;
 use ExtUtils::ParseXS::CountLines $VERSION;
index 56d1892..bc65c0a 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use Symbol;
 
-our $VERSION = '3.05';
+our $VERSION = '3.07';
 
 =head1 NAME
 
index 268a131..c13a5cb 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::ParseXS::CountLines;
 use strict;
 
-our $VERSION = '3.05';
+our $VERSION = '3.07';
 
 our $SECTION_END_MARKER;
 
index b83e45b..60d1172 100644 (file)
@@ -6,7 +6,7 @@ use File::Spec;
 use lib qw( lib );
 use ExtUtils::ParseXS::Constants ();
 
-our $VERSION = '3.06';
+our $VERSION = '3.07';
 
 our (@ISA, @EXPORT_OK);
 @ISA = qw(Exporter);
index 0d98e5f..04f2254 100644 (file)
@@ -119,6 +119,10 @@ L<Compress::Raw::Bzip2> has been upgraded from version 2.042 to version 2.045.
 
 =item *
 
+L<ExtUtils::ParseXS> has been upgraded from version 3.05 to version 3.07.
+
+=item *
+
 L<IO::Compress::Base> has been upgraded from version 2.042 to version 2.045.
 
 Added zipdetails utility.