summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-09-14 14:06:13 -0400
committerTavian Barnes <tavianator@tavianator.com>2019-09-14 14:10:39 -0400
commit00c9d93a591db9179b4c5dacc289a2e11643e5ef (patch)
tree5b21c94481132d8c44983aad66dfe45713910e98
parent4cfebe30000e7ce90c5763db6391137583e59700 (diff)
downloadbfs-00c9d93a591db9179b4c5dacc289a2e11643e5ef.tar.xz
Release 1.5.11.5.1
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md11
-rw-r--r--bfs.h2
3 files changed, 13 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c141ba8..9c85c76 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 1.5
+VERSION := 1.5.1
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index 8043583..3a5277e 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,17 @@
===
+1.5.1
+-----
+
+**September 14, 2019**
+
+- Added a warning to `-mount`, since it will change behaviour in the next POSIX revision
+- Added a workaround for environments that block `statx()` with `seccomp()`, like older Docker
+- Fixed coloring of nonexistent leading directories
+- Avoided calling `stat()` on all mount points at startup
+
+
1.5
---
diff --git a/bfs.h b/bfs.h
index 41ac208..b5617d9 100644
--- a/bfs.h
+++ b/bfs.h
@@ -22,7 +22,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "1.5"
+# define BFS_VERSION "1.5.1"
#endif
#ifndef BFS_HOMEPAGE