diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-01-09 10:14:20 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-01-09 10:14:40 -0500 |
commit | d6a8ad44c3716281f5ba5a395c91dfee0bcda09a (patch) | |
tree | b5f1a9a6c58a0cd827dae28090c34d40f4a8fb7c | |
parent | 2215f7a5d902764755673cc15a317982f0f15592 (diff) | |
download | bfs-d6a8ad44c3716281f5ba5a395c91dfee0bcda09a.tar.xz |
Release 1.5.21.5.2
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | RELEASES.md | 12 | ||||
-rw-r--r-- | bfs.h | 4 | ||||
-rw-r--r-- | fsade.h | 2 | ||||
-rw-r--r-- | util.h | 2 |
5 files changed, 18 insertions, 6 deletions
@@ -1,6 +1,6 @@ ############################################################################ # bfs # -# Copyright (C) 2015-2019 Tavian Barnes <tavianator@tavianator.com> # +# Copyright (C) 2015-2020 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. # @@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 1.5.1 +VERSION := 1.5.2 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 3a5277e..639140c 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,18 @@ === +1.5.2 +----- + +**January 9, 2020** + +- Fixed the build on NetBSD +- Added support for NFSv4 ACLs on FreeBSD +- Added a `+` after the file mode for files with ACLs in `-ls` +- Supported more file types (whiteouts, doors) in symbolic modes for `-ls`/`-printf %M` +- Implemented `-xattr` on FreeBSD + + 1.5.1 ----- @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2015-2019 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2020 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. * @@ -22,7 +22,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "1.5.1" +# define BFS_VERSION "1.5.2" #endif #ifndef BFS_HOMEPAGE @@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2019 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2019-2020 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-2019 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2016-2020 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. * |