Skip to content

Commit

Permalink
Bumped version to 1.63; updated Changes notes
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Aug 8, 2022
1 parent aafdf5c commit 43d5cc7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.63 -- 2022-08-08
[BUGFIXES]
* Fix off-by-one in stack handling of head() / tail() (RT143905)
* Fix documentation copy-paste error about builtin::reftype
* Ensure exotic_names.t will work on EBCDIC platforms
* Add basic Github CI workflow

1.62 -- 2022-03-17
[CHANGES]
* Prepare for perl 5.35.10 release:
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.62";
our $VERSION = "1.63";
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.62"; # FIXUP
our $VERSION = "1.63"; # 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.62";
our $VERSION = "1.63";
$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.62";
our $VERSION = "1.63";
$VERSION =~ tr/_//d;

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

0 comments on commit 43d5cc7

Please sign in to comment.