From d2eadc93db7611a20dce86c4af77e64b80ee29e3 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 5 Jul 2022 10:21:51 -0400 Subject: Release 2.6.1 --- Makefile | 2 +- docs/CHANGELOG.md | 13 +++++++++++++ src/bfs.h | 2 +- 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 -- cgit v1.2.3