summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-06-02 14:45:20 -0400
committerTavian Barnes <tavianator@tavianator.com>2021-06-02 14:46:02 -0400
commit6e080cda6978476b1c7ae8e08cd34f67e29aa147 (patch)
treeaab942388bf7a5592243879ba30690ca42a8be8f
parent1eeadd8e9402c69afff85b187683bc50292d00a5 (diff)
downloadbfs-6e080cda6978476b1c7ae8e08cd34f67e29aa147.tar.xz
Release 2.2.12.2.1
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md21
-rw-r--r--bfs.h2
3 files changed, 23 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5d70c6e..6c96fb8 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 2.2
+VERSION := 2.2.1
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index fa9e259..6400788 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -1,6 +1,27 @@
2.*
===
+2.2.1
+-----
+
+**June 2, 2021**
+
+- Fixed some incorrect coloring of broken links when links are being followed (`-L`)
+
+- Made the tests work when run as root by dropping privileges.
+ This may be helpful for certain packaging or CI environments, but is not recommended.
+
+- Treat empty `PAGER` and `LESS` environment variables like they're unset, for `bfs -help` ([#71]).
+ Thanks @markus-oberhumer!
+
+- The soft `RLIMIT_NOFILE` is now raised automatically to a fairly large value when possible.
+ This provides a minor performance benefit for large directory trees.
+
+- Implemented time units for `-mtime` as found in FreeBSD find ([#75])
+
+[#71]: https://github.com/tavianator/bfs/issues/71
+[#75]: https://github.com/tavianator/bfs/issues/75
+
2.2
---
diff --git a/bfs.h b/bfs.h
index 3d61aac..f357807 100644
--- a/bfs.h
+++ b/bfs.h
@@ -22,7 +22,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "2.2"
+# define BFS_VERSION "2.2.1"
#endif
#ifndef BFS_HOMEPAGE