Skip to content

Commit

Permalink
Bump version to 1.68; updated Changes notes about rebuilding MANIFEST
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Oct 18, 2024
1 parent 7f54b6d commit 2f41edd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
1.67 -- 2024-10-18
1.68 -- 2024-10-18
[CHANGES]
* Added (empty) Scalar::List::Utils module so that a module exists
which matches the name of the distribution (GH #135)

1.67 -- 2024-10-18
[BUGFIXES]
* zip() and mesh() should not alias their input values into the
returned results (RT156183)
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.67";
our $VERSION = "1.68";
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.67"; # FIXUP
our $VERSION = "1.68"; # FIXUP
$VERSION =~ tr/_//d; # FIXUP

1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Scalar/List/Utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Scalar::List::Utils;
use strict;
use warnings;

our $VERSION = "1.67";
our $VERSION = "1.68";
$VERSION =~ tr/_//d;

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.67";
our $VERSION = "1.68";
$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.67";
our $VERSION = "1.68";
$VERSION =~ tr/_//d;

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

0 comments on commit 2f41edd

Please sign in to comment.