summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-02-10 15:45:02 -0500
committerTavian Barnes <tavianator@tavianator.com>2019-02-10 15:45:02 -0500
commit78a00f83b7ddc14abb2da7b1ac6c5c801e206d3f (patch)
tree9c87deeb0510018d68565bd3a7b27ed2f87e8f7e
parentd64db6bad79e10f92c56e5572d6ae9072d62b3a3 (diff)
downloadbfs-1.3.3.tar.xz
Release 1.3.31.3.3
-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 0bf0eb7..3a4bfb4 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 1.3.2
+VERSION := 1.3.3
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index b21c655..5749fab 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,20 @@
===
+1.3.3
+-----
+
+**February 10, 2019**
+
+- Fixed unpredictable behaviour for empty responses to `-ok`/`-okdir` caused by an uninitialized string
+- Writing to standard output now causes `bfs` to fail if the descriptor was closed
+- Fixed incomplete file coloring in error messages
+- Added some data flow optimizations
+- Fixed `-nogroup`/`-nouser` in big directory trees
+- Added `-type w` for whiteouts, as supported by FreeBSD `find`
+- Re-wrote the `-help` message and manual page
+
+
1.3.2
-----
diff --git a/bfs.h b/bfs.h
index d5d3f93..cc24e51 100644
--- a/bfs.h
+++ b/bfs.h
@@ -22,7 +22,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "1.3.2"
+# define BFS_VERSION "1.3.3"
#endif
#ifndef BFS_HOMEPAGE