summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-06-27 23:34:35 -0400
committerTavian Barnes <tavianator@tavianator.com>2019-06-27 23:34:35 -0400
commit0473beaa2e3a46dd782af1182413fcdd4d33e275 (patch)
treec0f9123b9d443d192f4a187404d49cd44b31f5f1
parentce677576f1f7f971f45a5a08c044df1a916b004c (diff)
downloadbfs-1.5.tar.xz
Release 1.51.5
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md12
-rw-r--r--bfs.h2
3 files changed, 14 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2d0396d..6195eca 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 1.4.1
+VERSION := 1.5
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index befe3ba..8043583 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,18 @@
===
+1.5
+---
+
+**June 27, 2019**
+
+- New `-xattr` predicate to find files with extended attributes
+- Fixed the `-acl` implementation on macOS
+- Implemented depth-first (`-S dfs`) and iterative deepening search (`-S ids`)
+- Piped `-help` output into `$PAGER` by default
+- Fixed crashes on some invalid `LS_COLORS` values
+
+
1.4.1
-----
diff --git a/bfs.h b/bfs.h
index b29a307..41ac208 100644
--- a/bfs.h
+++ b/bfs.h
@@ -22,7 +22,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "1.4.1"
+# define BFS_VERSION "1.5"
#endif
#ifndef BFS_HOMEPAGE