diff --git a/Changes b/Changes index e6597cf..72e1873 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/lib/List/Util.pm b/lib/List/Util.pm index e8c2674..4022b6a 100644 --- a/lib/List/Util.pm +++ b/lib/List/Util.pm @@ -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; diff --git a/lib/List/Util/XS.pm b/lib/List/Util/XS.pm index d3b3cb8..eae2ac3 100644 --- a/lib/List/Util/XS.pm +++ b/lib/List/Util/XS.pm @@ -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; diff --git a/lib/Scalar/Util.pm b/lib/Scalar/Util.pm index 65dbe90..cf95c78 100644 --- a/lib/Scalar/Util.pm +++ b/lib/Scalar/Util.pm @@ -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 diff --git a/lib/Sub/Util.pm b/lib/Sub/Util.pm index e3e0110..f61cb22 100644 --- a/lib/Sub/Util.pm +++ b/lib/Sub/Util.pm @@ -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