diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | RELEASES.md | 14 | ||||
-rw-r--r-- | bfs.h | 2 |
3 files changed, 16 insertions, 2 deletions
@@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 2.3 +VERSION := 2.3.1 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 4561beb..7f4b079 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,20 @@ 2.* === +2.3.1 +----- + +**January 21, 2022** + +- Fixed the build on Debian kFreeBSD + +- Fixed a crash on GNU Hurd when piping bfs's output + +- Fixed a double-`close()` on non-Linux platforms if `fdopendir()` fails + +- Reduced memory allocations on startup + + 2.3 --- @@ -22,7 +22,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "2.3" +# define BFS_VERSION "2.3.1" #endif #ifndef BFS_HOMEPAGE |