summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2018-01-20 12:40:08 -0500
committerTavian Barnes <tavianator@tavianator.com>2018-01-20 12:40:08 -0500
commit54696b2e975c8ca9979743be98187d733ce64de4 (patch)
tree0f389671678d268b31a78556e64a0a9ef9e73864
parentb2b97e301892d89b9909bed17f4299e09af1e33b (diff)
downloadbfs-1.2.tar.xz
Release 1.21.2
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md14
-rw-r--r--bfs.h2
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