summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-12-20 22:18:13 -0500
committerTavian Barnes <tavianator@tavianator.com>2016-12-20 22:18:13 -0500
commite5af47a6eac34dbf380949b9dad5ed8373d10d37 (patch)
tree1a2e03027c3d0ecccfc7a1e95648ed70cd5a17c9
parent9b30634a234659c7dd87073c00affdcdec74c5ed (diff)
downloadbfs-0.88.tar.xz
Bump the version to 0.880.88
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md17
-rw-r--r--bfs.h2
3 files changed, 19 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 472d495..0143857 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
#####################################################################
ifeq ($(wildcard .git),)
-VERSION := 0.84.1
+VERSION := 0.88
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index 058f584..475f426 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,23 @@
===
+0.88
+----
+
+**December 20, 2016**
+
+67/76 GNU find features supported.
+
+- Fixed the build on macOS, and some other UNIXes
+- Implemented `-regex`, `-iregex`, `-regextype`, and BSD's `-E`
+- Implemented `-x` (same as `-mount`/`-xdev`) from BSD
+- Implemented `-mnewer` (same as `-newer`) from BSD
+- Implemented `-depth N` from BSD
+- Implemented `-sparse` from FreeBSD
+- Implemented the `T` and `P` suffices for `-size`, for BSD compatibility
+- Added support for `-gid NAME` and `-uid NAME` as in BSD
+
+
0.84.1
------
diff --git a/bfs.h b/bfs.h
index 3a470f3..e5882ac 100644
--- a/bfs.h
+++ b/bfs.h
@@ -21,7 +21,7 @@
#include <time.h>
#ifndef BFS_VERSION
-# define BFS_VERSION "0.84.1"
+# define BFS_VERSION "0.88"
#endif
#ifndef BFS_HOMEPAGE