summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-11-24 22:04:25 -0500
committerTavian Barnes <tavianator@tavianator.com>2016-11-24 22:04:25 -0500
commit6962fb41b8e57f8bc817b477cf16262a0ce876d5 (patch)
treeb76ead8837150cb716cffecd2b7b68cf29f4bbf7
parent4d275181be07cd886bb7f879635a2573ee32f741 (diff)
downloadbfs-6962fb41b8e57f8bc817b477cf16262a0ce876d5.tar.xz
Release 0.84.10.84.1
-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 d33cde1..877dc55 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
#####################################################################
ifeq ($(wildcard .git),)
-VERSION := 0.84
+VERSION := 0.84.1
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index a755e01..058f584 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,23 @@
===
+0.84.1
+------
+
+**November 24, 2016**
+
+Bugfix release.
+
+- Fixed https://github.com/tavianator/bfs/issues/7 again
+- Like GNU find, don't print warnings by default if standard input is not a terminal
+- Redirect standard input from /dev/null for -ok and -okdir
+- Skip . when -delete'ing
+- Fixed -execdir when the root path has no slashes
+- Fixed -execdir in /
+- Support -perm +MODE for symbolic modes
+- Fixed the build on FreeBSD
+
+
0.84
----
diff --git a/bfs.h b/bfs.h
index baeae31..f177340 100644
--- a/bfs.h
+++ b/bfs.h
@@ -20,7 +20,7 @@
#include <time.h>
#ifndef BFS_VERSION
-# define BFS_VERSION "0.84"
+# define BFS_VERSION "0.84.1"
#endif
#ifndef BFS_HOMEPAGE