Skip to content

Commit

Permalink
Bumped version to 1.59; updated Changes notes
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Sep 12, 2021
1 parent 058fa7d commit ace9096
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
1.58 -- 2021-09-12
1.59 -- 2021-09-12
[CHANGES]
* Removed Scalar::Util::isbool() as the API design for older perls
isn't quite clear, and it doesn't do anything useful on any
currently-released perl version
* Tidy up the unnecessary bits of @EXPORT_FAIL
* Use the new G_LIST constant rather than G_ARRAY

1.58 -- 2021-09-12
(bad release because I forgot to `git push`)

1.57 -- 2021-09-11
[CHANGES]
* Added Scalar::Util::isbool() to track new core-supported boolean
Expand Down
2 changes: 1 addition & 1 deletion lib/List/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ our @EXPORT_OK = qw(
sample shuffle uniq uniqint uniqnum uniqstr zip zip_longest zip_shortest mesh mesh_longest mesh_shortest
head tail pairs unpairs pairkeys pairvalues pairmap pairgrep pairfirst
);
our $VERSION = "1.58";
our $VERSION = "1.59";
our $XS_VERSION = $VERSION;
$VERSION =~ tr/_//d;

Expand Down
2 changes: 1 addition & 1 deletion lib/List/Util/XS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use List::Util;

our $VERSION = "1.58"; # FIXUP
our $VERSION = "1.59"; # FIXUP
$VERSION =~ tr/_//d; # FIXUP

1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Scalar/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ our @EXPORT_OK = qw(
dualvar isdual isvstring looks_like_number openhandle readonly set_prototype
tainted
);
our $VERSION = "1.58";
our $VERSION = "1.59";
$VERSION =~ tr/_//d;

require List::Util; # List::Util loads the XS
Expand Down
2 changes: 1 addition & 1 deletion lib/Sub/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ our @EXPORT_OK = qw(
subname set_subname
);

our $VERSION = "1.58";
our $VERSION = "1.59";
$VERSION =~ tr/_//d;

require List::Util; # as it has the XS
Expand Down

0 comments on commit ace9096

Please sign in to comment.