From 50b8a56d0057244725aa7408857c61da3ec1a768 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 24 Sep 2018 23:09:38 -0400 Subject: Update copyright dates --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index cb6a4a0..d63fbe3 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ############################################################################ # bfs # -# Copyright (C) 2015-2017 Tavian Barnes # +# Copyright (C) 2015-2018 Tavian Barnes # # # # Permission to use, copy, modify, and/or distribute this software for any # # purpose with or without fee is hereby granted. # -- cgit v1.2.3 From ce1118b27fdbf7886b108b5c805107e98e75194a Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 24 Sep 2018 23:10:37 -0400 Subject: Release 1.2.4 --- Makefile | 2 +- RELEASES.md | 13 +++++++++++++ bfs.h | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d63fbe3..b18c61a 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 1.2.3 +VERSION := 1.2.4 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index fcc3e14..9e34a3b 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,19 @@ === +1.2.4 +----- + +**September 24, 2018** + +- GNU find compatibility fixes for `-printf`: + - `%Y` now prints `?` if an error occurs resolving the link + - `%B` is now supported for birth/creation time (as well as `%W`/`%w`) + - All standard `strftime()` formats are supported, not just the ones from the GNU find manual +- Optimizations are now re-run if any expressions are reordered +- `-exec` and friends no longer leave zombie processes around when `exec()` fails + + 1.2.3 ----- diff --git a/bfs.h b/bfs.h index 6624ed4..d53e628 100644 --- a/bfs.h +++ b/bfs.h @@ -18,7 +18,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "1.2.3" +# define BFS_VERSION "1.2.4" #endif #ifndef BFS_HOMEPAGE -- cgit v1.2.3