From 770742fc876ba2ecbbcaffe218b971eee87765e6 Mon Sep 17 00:00:00 2001
From: Tavian Barnes <tavianator@tavianator.com>
Date: Wed, 14 Oct 2020 11:59:45 -0400
Subject: Release 2.0

---
 Makefile    | 2 +-
 RELEASES.md | 6 +++++-
 bfs.h       | 2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index ec5e6d0..bc8161e 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
 ############################################################################
 
 ifeq ($(wildcard .git),)
-VERSION := 1.7
+VERSION := 2.0
 else
 VERSION := $(shell git describe --always)
 endif
diff --git a/RELEASES.md b/RELEASES.md
index d80f1ee..6062cc5 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -4,7 +4,7 @@
 2.0
 ---
 
-**Unreleased**
+**October 14, 2020**
 
 - [#8]: New `-exclude <expression>` syntax to more easily and reliably filter out paths.
   For example:
@@ -40,6 +40,10 @@
 
 - Implemented `-xattrname` to find files with a particular extended attribute (from macOS find)
 
+- Made `-printf %l` still respect the width specifier (e.g. `%10l`) for non-links, to match GNU find
+
+- Made `bfs` fail if `-color` is given explicitly and `LS_COLORS` can't be parsed, rather than falling back to non-colored output
+
 [#8]: https://github.com/tavianator/bfs/issues/8
 [#30]: https://github.com/tavianator/bfs/issues/30
 
diff --git a/bfs.h b/bfs.h
index f5196f8..febfa92 100644
--- a/bfs.h
+++ b/bfs.h
@@ -22,7 +22,7 @@
 #define BFS_H
 
 #ifndef BFS_VERSION
-#	define BFS_VERSION "1.7"
+#	define BFS_VERSION "2.0"
 #endif
 
 #ifndef BFS_HOMEPAGE
-- 
cgit v1.2.3