diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-07-05 10:21:51 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-07-05 10:21:51 -0400 |
commit | d2eadc93db7611a20dce86c4af77e64b80ee29e3 (patch) | |
tree | 7c2a385162cd04417bd43112b5de3cd2f0029ba1 | |
parent | a792d4934006fa2969a051d0beb1801525004960 (diff) | |
download | bfs-d2eadc93db7611a20dce86c4af77e64b80ee29e3.tar.xz |
Release 2.6.12.6.1
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | docs/CHANGELOG.md | 13 | ||||
-rw-r--r-- | src/bfs.h | 2 |
3 files changed, 15 insertions, 2 deletions
@@ -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 --- @@ -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 |