From 61ffd3d1a138fa8bd218e61389fb6bd27cb6125c Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 11 Nov 2020 12:42:20 -0500 Subject: Release 2.1 --- Makefile | 2 +- RELEASES.md | 10 ++++++++++ bfs.h | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 70a78ef..a0fb535 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 2.0 +VERSION := 2.1 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 6062cc5..8676800 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,16 @@ 2.* === +2.1 +--- + +**November 11, 2020** + +- Added a new `-status` option that displays the search progress in a bar at the bottom of the terminal + +- Fixed an optimizer bug introduced in version 2.0 that affected some combinations of `-user`/`-group` and `-nouser`/`-nogroup` + + 2.0 --- diff --git a/bfs.h b/bfs.h index 0c1089e..cac8a12 100644 --- a/bfs.h +++ b/bfs.h @@ -22,7 +22,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "2.0" +# define BFS_VERSION "2.1" #endif #ifndef BFS_HOMEPAGE -- cgit v1.2.3