summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md22
-rw-r--r--bfs.h2
-rw-r--r--spawn.h2
4 files changed, 25 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6c96fb8..1ea17a2 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 2.2.1
+VERSION := 2.3
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index 6400788..4561beb 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -1,6 +1,27 @@
2.*
===
+2.3
+---
+
+**November 25, 2021**
+
+- More tweaks to `PAGER` and `LESS` handling for `bfs -help` ([#76])
+
+- Use 512-byte blocks for `-ls` when `POSIXLY_CORRECT` is set ([#77])
+
+- Implemented `-files0-from FILE` to take a list of `'\0'`-separated starting paths.
+ GNU find will implement the same feature in an upcoming release.
+
+- Added colors to `-printf` output ([#62])
+
+- Faster recovery from `E2BIG` during `-exec`
+
+[#76]: https://github.com/tavianator/bfs/issues/76
+[#77]: https://github.com/tavianator/bfs/issues/77
+[#62]: https://github.com/tavianator/bfs/issues/62
+
+
2.2.1
-----
@@ -22,6 +43,7 @@
[#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 f357807..ec66d67 100644
--- a/bfs.h
+++ b/bfs.h
@@ -22,7 +22,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "2.2.1"
+# define BFS_VERSION "2.3"
#endif
#ifndef BFS_HOMEPAGE
diff --git a/spawn.h b/spawn.h
index 7bae89c..0dd9d61 100644
--- a/spawn.h
+++ b/spawn.h
@@ -101,7 +101,7 @@ int bfs_spawn_addsetrlimit(struct bfs_spawn *ctx, int resource, const struct rli
* The arguments for the new process.
* @param envp
* The environment variables for the new process (NULL for the current
- * environment.
+ * environment).
* @return
* The PID of the new process, or -1 on error.
*/