Skip to content

Commit cb82e0e

Browse files
committed
0.2.3
1 parent c9dbdf5 commit cb82e0e

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ Revision history for File-Find
22

33
{{$NEXT}}
44

5+
0.2.3 2025-09-26T00:20:57+02:00
6+
- Fix bitrotten test case
7+
58
0.2.2 2025-08-05T11:06:19+02:00
69
- Add support for :follow-symlinks argument (re-imagined
710
from PR #18, Garland-g++)

META6.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
],
4242
"test-depends": [
4343
],
44-
"version": "0.2.2"
44+
"version": "0.2.3"
4545
}

lib/File/Find.rakumod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ my sub find(
5858

5959
#- hack ------------------------------------------------------------------------
6060
# To allow version fetching in test files
61-
unit module File::Find:ver<0.2.2>:auth<zef:raku-community-modules>;
61+
unit module File::Find:ver<0.2.3>:auth<zef:raku-community-modules>;
6262

6363
# vim: expandtab shiftwidth=4

t/01-file-find.rakutest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ dies-ok(sub { find(:dir<t/dir1>) },
112112

113113
$throw = $skip-first = True;
114114
$res = find(:dir<t/dir1>, :name<file.bar>, keep-going => True);
115-
is $res.elems, 1, 'found one of two files due to X::IO::Dir';
115+
is $res.elems, 2, 'found one of two files due to X::IO::Dir';
116116

117117
sub equals(\a, \b, $name) {
118118
my $is-ok = is a.elems, b.elems, a ~ " and " ~ b ~ " have the same length ";

0 commit comments

Comments
 (0)