summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--docs/CHANGELOG.md13
-rw-r--r--src/bfs.h2
3 files changed, 15 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d0d3f92..d6a61b0 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ VERSION := $(shell git describe --always 2>/dev/null)
endif
ifndef VERSION
-VERSION := 2.6
+VERSION := 2.6.1
endif
ifndef OS
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 7f6bcba..9d02e8e 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,6 +1,19 @@
2.*
===
+2.6.1
+-----
+
+**July 7, 2022**
+
+- Fix `stat()` errors on GNU Hurd systems with glibc older than 2.35
+
+- Added fish shell tab completion ([#94]).
+ Thanks @xfgusta!
+
+[#94]: https://github.com/tavianator/bfs/pull/94
+
+
2.6
---
diff --git a/src/bfs.h b/src/bfs.h
index 484d123..cf81412 100644
--- a/src/bfs.h
+++ b/src/bfs.h
@@ -22,7 +22,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "2.6"
+# define BFS_VERSION "2.6.1"
#endif
#ifndef BFS_HOMEPAGE