From a2a4c0b8285e52b91b57fd8f1746741029bdcfed Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 22 Jul 2017 13:33:29 -0400 Subject: Release 1.1 --- Makefile | 2 +- RELEASES.md | 18 ++++++++++++++++++ bfs.h | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 881f006..e94d722 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ ##################################################################### ifeq ($(wildcard .git),) -VERSION := 1.0.2 +VERSION := 1.1 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index a208cd8..0c020b8 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,24 @@ === +1.1 +--- + +**July 22, 2017** + +- Implemented some primaries from NetBSD `find`: + - `-exit [STATUS]` (like `-quit`, but with an optional explicit exit status) + - `-printx` (escape special characters for `xargs`) + - `-rm` (alias for `-delete`) +- Warn if `-prune` will have no effect due to `-depth` +- Handle y/n prompts according to the user's locale +- Prompt the user to correct typos without having to re-run `bfs` +- Fixed handling of paths longer than `PATH_MAX` +- Fixed spurious "Inappropriate ioctl for device" errors when redirecting `-exec ... +` output +- Fixed the handling of paths that treat a file as a directory (e.g. `a/b/c` where `a/b` is a regular file) +- Fixed an expression optimizer bug that broke command lines like `bfs -name '*' -o -print` + + 1.0.2 ----- diff --git a/bfs.h b/bfs.h index 79a383a..0d22560 100644 --- a/bfs.h +++ b/bfs.h @@ -24,7 +24,7 @@ #include #ifndef BFS_VERSION -# define BFS_VERSION "1.0.2" +# define BFS_VERSION "1.1" #endif #ifndef BFS_HOMEPAGE -- cgit v1.2.3