diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-05-05 23:32:04 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-05-05 23:32:04 -0400 |
commit | 50d395b356b3ffc73ab97101c5434bda06141cc4 (patch) | |
tree | b30dce2fb07fcec53b36a461fe0d5dcf93e78686 | |
parent | a3c1c3ed54d9d595feb1df38e775af3d6ff9facd (diff) | |
download | bfs-50d395b356b3ffc73ab97101c5434bda06141cc4.tar.xz |
Release 1.4.11.4.1
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | RELEASES.md | 11 | ||||
-rw-r--r-- | bfs.h | 2 |
3 files changed, 13 insertions, 2 deletions
@@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 1.4 +VERSION := 1.4.1 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 982bd5b..befe3ba 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,17 @@ === +1.4.1 +----- + +**April 5, 2019** + +- Added a nicer error message when the tests are run as root +- Fixed detection of comparison expressions with signs, to match GNU find for things like `-uid ++10` +- Added support for https://no-color.org/ +- Decreased the number of `stat()` calls necessary in some cases + + 1.4 --- @@ -22,7 +22,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "1.4" +# define BFS_VERSION "1.4.1" #endif #ifndef BFS_HOMEPAGE |