Skip to content

Commit

Permalink
Release 4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tavianator committed Oct 22, 2024
1 parent 316e1ef commit 217d804
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ if [ "${VERSION-}" ]; then
elif [ -e "$DIR/.git" ] && command -v git >/dev/null 2>&1; then
git -C "$DIR" describe --always --dirty
else
echo "4.0.2"
echo "4.0.3"
fi
18 changes: 18 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
4.*
===

4.0.3
-----

**October 22, 2024**

### Bug fixes

- Fixed an assertion failure when `$LS_COLORS` contained escaped NUL bytes like `*\0.gz=`
([`f5eaadb9`](https://github.com/tavianator/bfs/commit/f5eaadb96fb94b2d3666e53a99495840a3099aec))

- Fixed a use-after-free bug introduced in bfs 4.0 when unregistering and re-registering signal hooks.
This could be reproduced with `bfs -nocolor` by repeatedly sending `SIGINFO`/`SIGUSR1` to toggle the status bar.
([`39ff273`](https://github.com/tavianator/bfs/commit/39ff273df97e51b1285358b9e6808b117ea8adb1))

- Fixed a hang present since bfs 3.0 colorizing paths like `notdir/file`, where `notdir` is a symlink pointing to a non-directory file.
([`b89f22cb`](https://github.com/tavianator/bfs/commit/b89f22cbf250958a802915eb7b6bf0e5f38376ca))


4.0.2
-----

Expand Down
2 changes: 1 addition & 1 deletion docs/bfs.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH BFS 1 2024-09-17 "bfs 4.0.1"
.TH BFS 1 2024-10-22 "bfs 4.0.3"
.SH NAME
bfs \- breadth-first search for your files
.SH SYNOPSIS
Expand Down

0 comments on commit 217d804

Please sign in to comment.