Skip to content

Commit 93a2187

Browse files
committed
Releasgineering for v7.67_01
1 parent 717a522 commit 93a2187

35 files changed

+43
-34
lines changed

Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
7.67_01 Wed 1 Mar 12:38:00 GMT 2023
2+
3+
Bug fixes:
4+
- Treat MidnightBSD as a BSD
5+
- fix MIN_PERL_VERSION for perl versions with underscores
6+
7+
Test fixes:
8+
- t/.../More.pm - remove isn't: apostrophe as a package sep is deprecated
9+
110
7.66 Sun 25 Dec 08:47:54 GMT 2022
211

312
No changes since v7.65_03

lib/ExtUtils/Command.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
88
@ISA = qw(Exporter);
99
@EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f test_d chmod
1010
dos2unix);
11-
$VERSION = '7.66';
11+
$VERSION = '7.67_01';
1212
$VERSION =~ tr/_//d;
1313

1414
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.66';
13+
our $VERSION = '7.67_01';
1414
$VERSION =~ tr/_//d;
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
@@ -3,7 +3,7 @@ package ExtUtils::Liblist;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '7.66';
6+
our $VERSION = '7.67_01';
77
$VERSION =~ tr/_//d;
88

99
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.66';
14+
our $VERSION = '7.67_01';
1515
$VERSION =~ tr/_//d;
1616

1717
use ExtUtils::MakeMaker::Config;

lib/ExtUtils/MM.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55
use ExtUtils::MakeMaker::Config;
66

7-
our $VERSION = '7.66';
7+
our $VERSION = '7.67_01';
88
$VERSION =~ tr/_//d;
99

1010
require ExtUtils::Liblist;

lib/ExtUtils/MM_AIX.pm

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

33
use strict;
44
use warnings;
5-
our $VERSION = '7.66';
5+
our $VERSION = '7.67_01';
66
$VERSION =~ tr/_//d;
77

88
use ExtUtils::MakeMaker::Config;

lib/ExtUtils/MM_Any.pm

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

33
use strict;
44
use warnings;
5-
our $VERSION = '7.66';
5+
our $VERSION = '7.67_01';
66
$VERSION =~ tr/_//d;
77

88
use Carp;

lib/ExtUtils/MM_BeOS.pm

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

2929
our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
30-
our $VERSION = '7.66';
30+
our $VERSION = '7.67_01';
3131
$VERSION =~ tr/_//d;
3232

3333

lib/ExtUtils/MM_Cygwin.pm

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

13-
our $VERSION = '7.66';
13+
our $VERSION = '7.67_01';
1414
$VERSION =~ tr/_//d;
1515

1616

0 commit comments

Comments
 (0)