From 54696b2e975c8ca9979743be98187d733ce64de4 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sat, 20 Jan 2018 12:40:08 -0500 Subject: Release 1.2 --- Makefile | 2 +- RELEASES.md | 14 ++++++++++++++ bfs.h | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e3eadb1..0e57893 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 1.1.4 +VERSION := 1.2 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 8c6726c..ff29c2a 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,20 @@ === +1.2 +--- + +**January 20, 2018** + +- Added support for the `-perm +7777` syntax deprecated by GNU find (equivalent to `-perm /7777`), for compatibility with BSD finds +- Added support for file birth/creation times on platforms that report it + - `-Bmin`/`-Btime`/`-Bnewer` + - `B` flag for `-newerXY` + - `%w` and `%Wk` directives for `-printf` + - Uses the `statx(2)` system call on new enough Linux kernels +- More robustness to `E2BIG` added to the `-exec` implementation + + 1.1.4 ----- diff --git a/bfs.h b/bfs.h index bce677b..c46394c 100644 --- a/bfs.h +++ b/bfs.h @@ -18,7 +18,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "1.1.4" +# define BFS_VERSION "1.2" #endif #ifndef BFS_HOMEPAGE -- cgit v1.2.3