Skip to content

Commit

Permalink
Bumped version to 1.66; updated Changes notes
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Sep 19, 2024
1 parent 208e1d3 commit e75f6bc
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.66 -- 2024-09-19
[BUGFIXES]
* Apostrophe is no longer special in package names in recent Perl
versions
* Fix operator precedence issue in `t/uniqnum.t`

1.65 -- 2024-08-06
[BUGFIXES]
* Update exotic names test to avoid single quote package separator
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.65";
our $VERSION = "1.66";
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.65"; # FIXUP
our $VERSION = "1.66"; # 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.65";
our $VERSION = "1.66";
$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.65";
our $VERSION = "1.66";
$VERSION =~ tr/_//d;

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

0 comments on commit e75f6bc

Please sign in to comment.