From a7c51baacf0867b1089f683b05811744f01a70af Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 11 Mar 2017 16:50:09 -0500 Subject: Release 0.96 --- Makefile | 2 +- RELEASES.md | 18 ++++++++++++++++++ bfs.h | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ebd929a..e193b19 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ ##################################################################### ifeq ($(wildcard .git),) -VERSION := 0.88 +VERSION := 0.96 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 475f426..fdcf125 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,24 @@ === +0.96 +---- + +**March 11, 2017** + +73/76 GNU find features supported. + +- Implemented -nouser and -nogroup +- Implemented -printf and -fprintf +- Implemented -ls and -fls +- Implemented -type with multiple types at once (e.g. -type f,d,l) +- Fixed 32-bit builds +- Fixed -lname on "symlinks" in Linux /proc +- Fixed -quit to take effect as soon as it's reached +- Stopped redirecting standard input from /dev/null for -ok and -okdir, as that violates POSIX +- Many test suite improvements + + 0.88 ---- diff --git a/bfs.h b/bfs.h index 44387bf..61ee2ce 100644 --- a/bfs.h +++ b/bfs.h @@ -22,7 +22,7 @@ #include #ifndef BFS_VERSION -# define BFS_VERSION "0.88" +# define BFS_VERSION "0.96" #endif #ifndef BFS_HOMEPAGE -- cgit v1.2.3