summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md11
-rw-r--r--bfs.h2
3 files changed, 13 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 809f3b3..65dcf47 100644
--- a/Makefile
+++ b/Makefile
@@ -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
---
diff --git a/bfs.h b/bfs.h
index d96600c..b29a307 100644
--- a/bfs.h
+++ b/bfs.h
@@ -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