diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2018-06-23 19:21:33 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2018-06-23 19:21:33 -0400 |
commit | 70198a7ac2f542a0e708ae3ca8e6b3e874f61f18 (patch) | |
tree | 92acededf04e11d1f758cec19b57b73cf353d927 | |
parent | 68ae5d07e06cf8b91b4277ca25bb74e437cf3ca0 (diff) | |
download | bfs-70198a7ac2f542a0e708ae3ca8e6b3e874f61f18.tar.xz |
Release 1.2.21.2.2
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | RELEASES.md | 14 | ||||
-rw-r--r-- | bfs.h | 2 |
3 files changed, 16 insertions, 2 deletions
@@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 1.2.1 +VERSION := 1.2.2 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index a09b158..b730801 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,20 @@ === +1.2.2 +----- + +**June 23, 2018** + +- Minor bug fixes: + - Fixed `-exec ... '{}' +` argument size tracking after recovering from `E2BIG` + - Fixed `-fstype` if `/proc` is available but `/etc/mtab` is not + - Fixed an uninitialized variable when given `-perm +rw...` + - Fixed some potential "error: 'path': Success" messages +- Reduced reliance on GNU coreutils in the testsuite +- Refactored and simplified the internals of `bftw()` + + 1.2.1 ----- @@ -18,7 +18,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "1.2.1" +# define BFS_VERSION "1.2.2" #endif #ifndef BFS_HOMEPAGE |