Skip to content

Commit

Permalink
Bumped version to 1.65; udpated Changes notes
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Aug 6, 2024
1 parent d0edf89 commit 271b25d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.65 -- 2024-08-06
[BUGFIXES]
* Update exotic names test to avoid single quote package separator
(GH #128)
* Don't loop forever in uniqnum.t (GH #130)

1.64 -- 2024-08-02
[CHANGES]
* On Perl version 5.40 or later, various `Scalar::Util` functions are
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.64";
our $VERSION = "1.65";
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.64"; # FIXUP
our $VERSION = "1.65"; # 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.64";
our $VERSION = "1.65";
$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.64";
our $VERSION = "1.65";
$VERSION =~ tr/_//d;

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

0 comments on commit 271b25d

Please sign in to comment.