summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-09-10 01:02:23 -0400
committerTavian Barnes <tavianator@tavianator.com>2017-09-10 01:02:23 -0400
commit1db02c9ee890d6b5fda25444243c40f9d2bb9906 (patch)
tree15d9920c719755347393d7809f0ef56b39b08683
parentec92ae82f381169be0223e37f5afd85f0c6d2f21 (diff)
downloadbfs-1db02c9ee890d6b5fda25444243c40f9d2bb9906.tar.xz
Release 1.1.21.1.2
-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 059efa9..62d72f2 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 1.1.1
+VERSION := 1.1.2
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index 33a0379..ad3c847 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,18 @@
===
+1.1.2
+-----
+
+**September 10, 2017**
+
+- Fixed `-samefile` and similar predicates when passed broken symbolic links
+- Implemented `-fstype` on Solaris
+- Fixed `-fstype` under musl
+- Implemented `-D search`
+- Implemented a cost-based optimizer
+
+
1.1.1
-----
diff --git a/bfs.h b/bfs.h
index 97efb5d..9c79449 100644
--- a/bfs.h
+++ b/bfs.h
@@ -29,7 +29,7 @@
#include <time.h>
#ifndef BFS_VERSION
-# define BFS_VERSION "1.1.1"
+# define BFS_VERSION "1.1.2"
#endif
#ifndef BFS_HOMEPAGE