Skip to content

Commit 217d804

Browse files
committed
Release 4.0.3
1 parent 316e1ef commit 217d804

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

build/version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ if [ "${VERSION-}" ]; then
1414
elif [ -e "$DIR/.git" ] && command -v git >/dev/null 2>&1; then
1515
git -C "$DIR" describe --always --dirty
1616
else
17-
echo "4.0.2"
17+
echo "4.0.3"
1818
fi

docs/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
4.*
22
===
33

4+
4.0.3
5+
-----
6+
7+
**October 22, 2024**
8+
9+
### Bug fixes
10+
11+
- Fixed an assertion failure when `$LS_COLORS` contained escaped NUL bytes like `*\0.gz=`
12+
([`f5eaadb9`](https://github.com/tavianator/bfs/commit/f5eaadb96fb94b2d3666e53a99495840a3099aec))
13+
14+
- Fixed a use-after-free bug introduced in bfs 4.0 when unregistering and re-registering signal hooks.
15+
This could be reproduced with `bfs -nocolor` by repeatedly sending `SIGINFO`/`SIGUSR1` to toggle the status bar.
16+
([`39ff273`](https://github.com/tavianator/bfs/commit/39ff273df97e51b1285358b9e6808b117ea8adb1))
17+
18+
- Fixed a hang present since bfs 3.0 colorizing paths like `notdir/file`, where `notdir` is a symlink pointing to a non-directory file.
19+
([`b89f22cb`](https://github.com/tavianator/bfs/commit/b89f22cbf250958a802915eb7b6bf0e5f38376ca))
20+
21+
422
4.0.2
523
-----
624

docs/bfs.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH BFS 1 2024-09-17 "bfs 4.0.1"
1+
.TH BFS 1 2024-10-22 "bfs 4.0.3"
22
.SH NAME
33
bfs \- breadth-first search for your files
44
.SH SYNOPSIS

0 commit comments

Comments
 (0)