Skip to content

Commit fdcae88

Browse files
committed
Releasgineering for v7.11_04
1 parent d835f87 commit fdcae88

34 files changed

+49
-33
lines changed

Changes

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
7.11_04 Mon Feb 15 11:20:14 GMT 2016
2+
3+
Enhancements:
4+
- Added find_tests_recursive_in() method
5+
6+
Bug fixes:
7+
- Fix regression when both test.pl and t/*.t are present
8+
- Refactored internals to remove DirHandle usage
9+
10+
VMS fixes:
11+
- make_macro should handle multiple macros
12+
- Fix regression with File::Spec changes in previous release
13+
14+
Win32 fixes:
15+
- t/echo.t needs SHELL env for Win32 gmake
16+
117
7.11_03 Wed Nov 25 15:23:25 GMT 2015
218

319
Bug fixes:

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_03';
10+
$VERSION = '7.11_04';
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_03';
13+
our $VERSION = '7.11_04';
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_03';
5+
our $VERSION = '7.11_04';
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_03';
14+
our $VERSION = '7.11_04';
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_03';
6+
our $VERSION = '7.11_04';
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_03';
4+
our $VERSION = '7.11_04';
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_03';
4+
our $VERSION = '7.11_04';
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_03';
29+
our $VERSION = '7.11_04';
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_03';
12+
our $VERSION = '7.11_04';
1313
$VERSION = eval $VERSION;
1414

1515

lib/ExtUtils/MM_DOS.pm

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

33
use strict;
44

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

88
require ExtUtils::MM_Any;

lib/ExtUtils/MM_Darwin.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ BEGIN {
77
our @ISA = qw( ExtUtils::MM_Unix );
88
}
99

10-
our $VERSION = '7.11_03';
10+
our $VERSION = '7.11_04';
1111
$VERSION = eval $VERSION;
1212

1313

lib/ExtUtils/MM_MacOS.pm

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

33
use strict;
44

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

88
sub new {

lib/ExtUtils/MM_NW5.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use strict;
2222
use ExtUtils::MakeMaker::Config;
2323
use File::Basename;
2424

25-
our $VERSION = '7.11_03';
25+
our $VERSION = '7.11_04';
2626
$VERSION = eval $VERSION;
2727

2828
require ExtUtils::MM_Win32;

lib/ExtUtils/MM_OS2.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use ExtUtils::MakeMaker qw(neatvalue);
66
use File::Spec;
77

8-
our $VERSION = '7.11_03';
8+
our $VERSION = '7.11_04';
99
$VERSION = eval $VERSION;
1010

1111
require ExtUtils::MM_Any;

lib/ExtUtils/MM_QNX.pm

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

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

77
require ExtUtils::MM_Unix;

lib/ExtUtils/MM_UWIN.pm

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

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

77
require ExtUtils::MM_Unix;

lib/ExtUtils/MM_Unix.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use ExtUtils::MakeMaker qw($Verbose neatvalue _sprintf562);
1414

1515
# If we make $VERSION an our variable parse_version() breaks
1616
use vars qw($VERSION);
17-
$VERSION = '7.11_03';
17+
$VERSION = '7.11_04';
1818
$VERSION = eval $VERSION; ## no critic [BuiltinFunctions::ProhibitStringyEval]
1919

2020
require ExtUtils::MM_Any;

lib/ExtUtils/MM_VMS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BEGIN {
1515

1616
use File::Basename;
1717

18-
our $VERSION = '7.11_03';
18+
our $VERSION = '7.11_04';
1919
$VERSION = eval $VERSION;
2020

2121
require ExtUtils::MM_Any;

lib/ExtUtils/MM_VOS.pm

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

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

77
require ExtUtils::MM_Unix;

lib/ExtUtils/MM_Win32.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use ExtUtils::MakeMaker qw(neatvalue _sprintf562);
2727
require ExtUtils::MM_Any;
2828
require ExtUtils::MM_Unix;
2929
our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
30-
our $VERSION = '7.11_03';
30+
our $VERSION = '7.11_04';
3131
$VERSION = eval $VERSION;
3232

3333
$ENV{EMXSHELL} = 'sh'; # to run `commands`

lib/ExtUtils/MM_Win95.pm

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

33
use strict;
44

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

88
require ExtUtils::MM_Win32;

lib/ExtUtils/MY.pm

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

6-
our $VERSION = '7.11_03';
6+
our $VERSION = '7.11_04';
77
$VERSION = eval $VERSION;
88
our @ISA = qw(ExtUtils::MM);
99

lib/ExtUtils/MakeMaker.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ my %Recognized_Att_Keys;
2424
our %macro_fsentity; # whether a macro is a filesystem name
2525
our %macro_dep; # whether a macro is a dependency
2626

27-
our $VERSION = '7.11_03';
27+
our $VERSION = '7.11_04';
2828
$VERSION = eval $VERSION; ## no critic [BuiltinFunctions::ProhibitStringyEval]
2929

3030
# Emulate something resembling CVS $Revision$

lib/ExtUtils/MakeMaker/Config.pm

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

33
use strict;
44

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

88
use Config ();

lib/ExtUtils/MakeMaker/FAQ.pod

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

3-
our $VERSION = '7.11_03';
3+
our $VERSION = '7.11_04';
44
$VERSION = eval $VERSION;
55

66
1;

lib/ExtUtils/MakeMaker/Locale.pm

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

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

77
use base 'Exporter';

lib/ExtUtils/MakeMaker/Tutorial.pod

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

3-
our $VERSION = '7.11_03';
3+
our $VERSION = '7.11_04';
44
$VERSION = eval $VERSION;
55

66

lib/ExtUtils/MakeMaker/version.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use strict;
1515

1616
use vars qw(@ISA $VERSION $CLASS $STRICT $LAX *declare *qv);
1717

18-
$VERSION = '7.11_03';
18+
$VERSION = '7.11_04';
1919
$VERSION = eval $VERSION;
2020
$CLASS = 'version';
2121

lib/ExtUtils/MakeMaker/version/regex.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use strict;
1010

1111
use vars qw($VERSION $CLASS $STRICT $LAX);
1212

13-
$VERSION = '7.11_03';
13+
$VERSION = '7.11_04';
1414
$VERSION = eval $VERSION;
1515

1616
#--------------------------------------------------------------------------#

lib/ExtUtils/MakeMaker/version/vpp.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ use strict;
128128

129129
use Config;
130130
use vars qw($VERSION $CLASS @ISA $LAX $STRICT);
131-
$VERSION = '7.11_03';
131+
$VERSION = '7.11_04';
132132
$VERSION = eval $VERSION;
133133
$CLASS = 'ExtUtils::MakeMaker::version::vpp';
134134

lib/ExtUtils/Mkbootstrap.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ExtUtils::Mkbootstrap;
33
# There's just too much Dynaloader incest here to turn on strict vars.
44
use strict 'refs';
55

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

99
require Exporter;

lib/ExtUtils/Mksymlists.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use Config;
1010

1111
our @ISA = qw(Exporter);
1212
our @EXPORT = qw(&Mksymlists);
13-
our $VERSION = '7.11_03';
13+
our $VERSION = '7.11_04';
1414
$VERSION = eval $VERSION;
1515

1616
sub Mksymlists {

lib/ExtUtils/testlib.pm

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

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

99
use Cwd;

0 commit comments

Comments
 (0)