summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-01-21 09:48:32 -0500
committerTavian Barnes <tavianator@tavianator.com>2022-01-21 09:48:32 -0500
commit8199f5c1c599a39ba0a9c4ace0bacde95b4bb483 (patch)
tree24b8619312cd455a37d3e57b6ce18cd88f328207
parentd9ebd3a5c62a274f69256358734003cdcbaaef81 (diff)
downloadbfs-2.3.1.tar.xz
Release 2.3.12.3.1
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md14
-rw-r--r--bfs.h2
3 files changed, 16 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1ea17a2..18a51d3 100644
--- a/Makefile
+++ b/Makefile
@@ -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
---
diff --git a/bfs.h b/bfs.h
index ec66d67..fa9e83e 100644
--- a/bfs.h
+++ b/bfs.h
@@ -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