Skip to content

Commit 172ec69

Browse files
committed
Release engineering for v7.05_07
1 parent 6f41d63 commit 172ec69

34 files changed

+42
-33
lines changed

Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
7.05_07 Fri Jan 9 15:58:49 GMT 2015
2+
Bug fixes:
3+
- Dynamic and static targets now depend from pure_nolink
4+
5+
Test fixes:
6+
- Skip XS static on Haiku as well
7+
- Correctly skip static linking test on shrplib perls
8+
- Handle an occasional race condition in pm_to_blib.t
9+
110
7.05_06 Thu Jan 8 19:03:48 GMT 2015
211
Enhancements:
312
- Refactored XS handling

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.05_06';
10+
$VERSION = '7.05_07';
1111

1212
my $Is_VMS = $^O eq 'VMS';
1313
my $Is_VMS_mode = $Is_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.05_06';
13+
our $VERSION = '7.05_07';
1414

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

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.05_06';
5+
our $VERSION = '7.05_07';
66

77
use File::Spec;
88
require ExtUtils::Liblist::Kid;

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.05_06';
14+
our $VERSION = '7.05_07';
1515

1616
use ExtUtils::MakeMaker::Config;
1717
use Cwd 'cwd';

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.05_06';
6+
our $VERSION = '7.05_07';
77

88
require ExtUtils::Liblist;
99
require ExtUtils::MakeMaker;

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.05_06';
4+
our $VERSION = '7.05_07';
55

66
require ExtUtils::MM_Unix;
77
our @ISA = qw(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.05_06';
4+
our $VERSION = '7.05_07';
55

66
use Carp;
77
use File::Spec;

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.05_06';
29+
our $VERSION = '7.05_07';
3030

3131

3232
=item os_flavor

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.05_06';
12+
our $VERSION = '7.05_07';
1313

1414

1515
=head1 NAME

0 commit comments

Comments
 (0)