From 2c1c83b3c1ad24768d03c6f88c2e3b685d39e2b0 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 6 Mar 2021 15:33:01 -0500 Subject: Release 2.2 --- Makefile | 2 +- RELEASES.md | 20 ++++++++++++++++++++ bfs.h | 4 ++-- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9e44fdc..994962f 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 2.1 +VERSION := 2.2 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 8676800..13763d8 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,26 @@ 2.* === +2.2 +--- + +**March 6, 2020** + +- Fixed `-hidden` on hidden start paths + +- Added a Bash completion script. + Thanks @bmundt6! + +- Fixed rounding in `-used`. + Corresponding fixes were made to GNU find in version 4.8.0. + +- Optimized the open directory representation. + On Linux, much libc overhead is bypassed by issuing syscalls directly. + On all platforms, a few fewer syscalls and open file descriptors will be used. + +- Implemented `-flags` from BSD find + + 2.1 --- diff --git a/bfs.h b/bfs.h index cac8a12..3d61aac 100644 --- a/bfs.h +++ b/bfs.h @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2020 Tavian Barnes * + * Copyright (C) 2015-2021 Tavian Barnes * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -22,7 +22,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "2.1" +# define BFS_VERSION "2.2" #endif #ifndef BFS_HOMEPAGE -- cgit v1.2.3