diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | RELEASES.md | 14 | ||||
-rw-r--r-- | bfs.h | 2 |
3 files changed, 16 insertions, 2 deletions
@@ -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 ----- @@ -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 |