Skip to content

Commit aab0cdf

Browse files
committed
Release 3.2
1 parent cf080ec commit aab0cdf

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ gen/version.c.new::
7474
elif test -e src/../.git && command -v git >/dev/null 2>&1; then \
7575
git -C src/.. describe --always --dirty; \
7676
else \
77-
echo "3.1.3"; \
77+
echo "3.2"; \
7878
fi | tr -d '\n' >>$@
7979
@printf '";\n' >>$@
8080

docs/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
11
3.*
22
===
33

4+
3.2
5+
---
6+
7+
**May 2, 2024**
8+
9+
### New features
10+
11+
- New `-limit N` action that quits immediately after `N` results
12+
13+
- Implemented `-context` (from GNU find) for matching SELinux contexts ([#27](https://github.com/tavianator/bfs/issues/27))
14+
15+
- Implemented `-printf %Z` for printing SELinux contexts
16+
17+
### Changes
18+
19+
- The build system has been rewritten, and there is now a configure step:
20+
21+
$ ./configure
22+
$ make
23+
24+
See `./configure --help` or [docs/BUILDING.md](/docs/BUILDING.md) for more details.
25+
26+
- Improved platform support
27+
- Implemented `-acl` on Solaris/Illumos
28+
- Implemented `-xattr` on DragonFly BSD
29+
30+
### Bug fixes
31+
32+
- Fixed some rarely-used code paths that clean up after allocation failures
33+
434
3.1.3
535
-----
636

0 commit comments

Comments
 (0)