Skip to content

Commit 22a4c30

Browse files
committed
Bump to 0.42_33
1 parent 557c49e commit 22a4c30

File tree

20 files changed

+31
-19
lines changed

20 files changed

+31
-19
lines changed

Changes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
Revision history for Perl extension Module::Build.
22

3+
0.42_33 - Wed Mar 29 10:38:56 PM CEST 2023
4+
5+
- PodParser now respects =encoding directives
6+
7+
- Don't use libraries in t/bundled for Build.PL
8+
9+
- make_tarball: workaround for broken tar on Darwin
10+
11+
- Respect $Config{man1ext}/$Config{man3ext}
12+
13+
- Do not require a compiler if c_source is an empty list
14+
315
0.4232 - Thu Dec 8 10:27:44 PM CET 2022
416

517
- Drop Pod::Man dependency for 5.8 compatibility

lib/Module/Build.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use Perl::OSType ();
1717
use Module::Build::Base;
1818

1919
our @ISA = qw(Module::Build::Base);
20-
our $VERSION = '0.4232';
20+
our $VERSION = '0.42_33';
2121
$VERSION = eval $VERSION;
2222

2323
# Inserts the given module into the @ISA hierarchy between

lib/Module/Build/Base.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use 5.006;
66
use strict;
77
use warnings;
88

9-
our $VERSION = '0.4232';
9+
our $VERSION = '0.42_33';
1010
$VERSION = eval $VERSION;
1111

1212
use Carp;

lib/Module/Build/Compat.pm

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

33
use strict;
44
use warnings;
5-
our $VERSION = '0.4232';
5+
our $VERSION = '0.42_33';
66

77
use File::Basename ();
88
use File::Spec;

lib/Module/Build/Config.pm

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

33
use strict;
44
use warnings;
5-
our $VERSION = '0.4232';
5+
our $VERSION = '0.42_33';
66
$VERSION = eval $VERSION;
77
use Config;
88

lib/Module/Build/Cookbook.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Module::Build::Cookbook;
22
use strict;
33
use warnings;
4-
our $VERSION = '0.4232';
4+
our $VERSION = '0.42_33';
55

66

77
=head1 NAME

lib/Module/Build/Dumper.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Module::Build::Dumper;
22
use strict;
33
use warnings;
4-
our $VERSION = '0.4232';
4+
our $VERSION = '0.42_33';
55

66
# This is just a split-out of a wrapper function to do Data::Dumper
77
# stuff "the right way". See:

lib/Module/Build/Notes.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package Module::Build::Notes;
44

55
use strict;
66
use warnings;
7-
our $VERSION = '0.4232';
7+
our $VERSION = '0.42_33';
88
$VERSION = eval $VERSION;
99
use Data::Dumper;
1010
use Module::Build::Dumper;

lib/Module/Build/PPMMaker.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 Config;
66

7-
our $VERSION = '0.4232';
7+
our $VERSION = '0.42_33';
88
$VERSION = eval $VERSION;
99

1010
# This code is mostly borrowed from ExtUtils::MM_Unix 6.10_03, with a

lib/Module/Build/Platform/Default.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Module::Build::Platform::Default;
22

33
use strict;
44
use warnings;
5-
our $VERSION = '0.4232';
5+
our $VERSION = '0.42_33';
66
$VERSION = eval $VERSION;
77
use Module::Build::Base;
88

0 commit comments

Comments
 (0)