Skip to content

Commit 37647a2

Browse files
committed
Releasgineering for v7.11_05
1 parent c7c2cf5 commit 37647a2

34 files changed

+43
-33
lines changed

Changes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
7.11_05 Sat Mar 19 09:41:02 GMT 2016
2+
3+
Bug fixes:
4+
- Less noisey output during building sub-modules
5+
- Fix dos2unix() on Windows
6+
7+
VMS fixes:
8+
- Implemented XSMULTI and XSBUILD
9+
- Resurrect PASTHRU on VMS
10+
111
7.11_04 Mon Feb 15 11:20:14 GMT 2016
212

313
Enhancements:

lib/ExtUtils/Command.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
77
@ISA = qw(Exporter);
88
@EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f test_d chmod
99
dos2unix);
10-
$VERSION = '7.11_04';
10+
$VERSION = '7.11_05';
1111
$VERSION = eval $VERSION;
1212

1313
my $Is_VMS = $^O eq 'VMS';

lib/ExtUtils/Command/MM.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ our @ISA = qw(Exporter);
1010

1111
our @EXPORT = qw(test_harness pod2man perllocal_install uninstall
1212
warn_if_old_packlist test_s cp_nonempty);
13-
our $VERSION = '7.11_04';
13+
our $VERSION = '7.11_05';
1414
$VERSION = eval $VERSION;
1515

1616
my $Is_VMS = $^O eq 'VMS';

lib/ExtUtils/Liblist.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package ExtUtils::Liblist;
22

33
use strict;
44

5-
our $VERSION = '7.11_04';
5+
our $VERSION = '7.11_05';
66
$VERSION = eval $VERSION;
77

88
use File::Spec;

lib/ExtUtils/Liblist/Kid.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use 5.006;
1111

1212
use strict;
1313
use warnings;
14-
our $VERSION = '7.11_04';
14+
our $VERSION = '7.11_05';
1515
$VERSION = eval $VERSION;
1616

1717
use ExtUtils::MakeMaker::Config;

lib/ExtUtils/MM.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ExtUtils::MM;
33
use strict;
44
use ExtUtils::MakeMaker::Config;
55

6-
our $VERSION = '7.11_04';
6+
our $VERSION = '7.11_05';
77
$VERSION = eval $VERSION;
88

99
require ExtUtils::Liblist;

lib/ExtUtils/MM_AIX.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package ExtUtils::MM_AIX;
22

33
use strict;
4-
our $VERSION = '7.11_04';
4+
our $VERSION = '7.11_05';
55
$VERSION = eval $VERSION;
66

77
require ExtUtils::MM_Unix;

lib/ExtUtils/MM_Any.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package ExtUtils::MM_Any;
22

33
use strict;
4-
our $VERSION = '7.11_04';
4+
our $VERSION = '7.11_05';
55
$VERSION = eval $VERSION;
66

77
use Carp;

lib/ExtUtils/MM_BeOS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ require ExtUtils::MM_Any;
2626
require ExtUtils::MM_Unix;
2727

2828
our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
29-
our $VERSION = '7.11_04';
29+
our $VERSION = '7.11_05';
3030
$VERSION = eval $VERSION;
3131

3232

lib/ExtUtils/MM_Cygwin.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require ExtUtils::MM_Unix;
99
require ExtUtils::MM_Win32;
1010
our @ISA = qw( ExtUtils::MM_Unix );
1111

12-
our $VERSION = '7.11_04';
12+
our $VERSION = '7.11_05';
1313
$VERSION = eval $VERSION;
1414

1515

0 commit comments

Comments
 (0)