Skip to content

Commit ba5b073

Browse files
committed
version 2.002002
1 parent 9af8539 commit ba5b073

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Changes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
Revision history for Function-Parameters
22

3+
2.002002 2023-04-01
4+
- Work around old versions of ExtUtils::MakeMaker not providing
5+
is_make_type(), whose version dependency is undocumented (sigh).
6+
- Restrict GNU syntax for exporting variables to type 'gmake'; should
7+
fix building on BSD, Solaris, etc.
8+
- Declare dependency on ExtUtils::MakeMaker 7+ and remove
9+
compatibility code for older versions.
10+
311
2.002001 2023-04-01
412
- Fix (hopefully) Windows builds using nmake.exe.
513

lib/Function/Parameters.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ sub _croak {
1414

1515
use XSLoader;
1616
BEGIN {
17-
our $VERSION = '2.002001';
17+
our $VERSION = '2.002002';
1818
#$VERSION =~ s/-TRIAL[0-9]*\z//;
1919
XSLoader::load;
2020
}

lib/Function/Parameters/Info.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use warnings;
66
use Function::Parameters;
77
use Carp ();
88

9-
our $VERSION = '2.002001';
9+
our $VERSION = '2.002002';
1010

1111
{
1212
package Function::Parameters::Param;

0 commit comments

Comments
 (0)