diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2018-09-24 23:15:51 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2018-09-24 23:15:51 -0400 |
commit | 644233dcc2a2a037812dd6b61df9c1610b378bf6 (patch) | |
tree | ab5cd45523f4ff0c805d286b133ef910ad28068a | |
parent | b5c9656a2f5be060491fae98f589f66855b8a638 (diff) | |
parent | ce1118b27fdbf7886b108b5c805107e98e75194a (diff) | |
download | bfs-644233dcc2a2a037812dd6b61df9c1610b378bf6.tar.xz |
Merge branch 'release-1.2.4'
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | RELEASES.md | 13 | ||||
-rw-r--r-- | bfs.h | 4 | ||||
-rw-r--r-- | bftw.c | 2 | ||||
-rw-r--r-- | bftw.h | 2 | ||||
-rw-r--r-- | cmdline.h | 2 | ||||
-rw-r--r-- | color.c | 2 | ||||
-rw-r--r-- | color.h | 2 | ||||
-rw-r--r-- | eval.c | 2 | ||||
-rw-r--r-- | eval.h | 2 | ||||
-rw-r--r-- | expr.h | 2 | ||||
-rw-r--r-- | mtab.c | 2 | ||||
-rw-r--r-- | mtab.h | 2 | ||||
-rw-r--r-- | opt.c | 2 | ||||
-rw-r--r-- | parse.c | 2 | ||||
-rw-r--r-- | printf.c | 2 | ||||
-rw-r--r-- | printf.h | 2 | ||||
-rw-r--r-- | util.c | 2 | ||||
-rw-r--r-- | util.h | 2 |
19 files changed, 32 insertions, 19 deletions
@@ -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 ----- @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -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 @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2017-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2017-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2017-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2017-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2017-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2016-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2016-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2016-2017 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2016-2018 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * |