diff --git a/Changes b/Changes index 72e1873..17fc74b 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,13 @@ +1.67 -- 2024-10-18 + [CHANGES] + * Added (empty) Scalar::List::Utils module so that a module exists + which matches the name of the distribution (GH #135) + + [BUGFIXES] + * zip() and mesh() should not alias their input values into the + returned results (RT156183) + * Exception message from mesh() should name the correct function + 1.66 -- 2024-09-19 [BUGFIXES] * Apostrophe is no longer special in package names in recent Perl diff --git a/lib/List/Util.pm b/lib/List/Util.pm index 4022b6a..b330cbe 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.66"; +our $VERSION = "1.67"; our $XS_VERSION = $VERSION; $VERSION =~ tr/_//d; diff --git a/lib/List/Util/XS.pm b/lib/List/Util/XS.pm index eae2ac3..e854a98 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.66"; # FIXUP +our $VERSION = "1.67"; # FIXUP $VERSION =~ tr/_//d; # FIXUP 1; diff --git a/lib/Scalar/List/Utils.pm b/lib/Scalar/List/Utils.pm index d33ce8a..ddf30a9 100644 --- a/lib/Scalar/List/Utils.pm +++ b/lib/Scalar/List/Utils.pm @@ -2,7 +2,7 @@ package Scalar::List::Utils; use strict; use warnings; -our $VERSION = "1.63"; +our $VERSION = "1.67"; $VERSION =~ tr/_//d; 1; diff --git a/lib/Scalar/Util.pm b/lib/Scalar/Util.pm index cf95c78..d02120a 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.66"; +our $VERSION = "1.67"; $VERSION =~ tr/_//d; require List::Util; # List::Util loads the XS diff --git a/lib/Sub/Util.pm b/lib/Sub/Util.pm index f61cb22..5bd3989 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.66"; +our $VERSION = "1.67"; $VERSION =~ tr/_//d; require List::Util; # as it has the XS