From 5912f89baec5251456a475345ed78582ccb9df5a Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Wed, 22 Apr 2020 09:12:37 -0400 Subject: Release 1.7 --- Makefile | 2 +- RELEASES.md | 10 ++++++++++ bfs.h | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3163ab0..cb62ff4 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ ############################################################################ ifeq ($(wildcard .git),) -VERSION := 1.6 +VERSION := 1.7 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 7e51b9e..11f5bc8 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,16 @@ 1.* === +1.7 +--- + +**April 22, 2020** + +- Fixed `-ls` printing numeric IDs instead of user/group names in large directory trees +- Cached the user and group tables for a performance boost +- Fixed interpretation of "default" ACLs +- Implemented `-s` flag to sort results + 1.6 --- diff --git a/bfs.h b/bfs.h index cf3ac98..f5196f8 100644 --- a/bfs.h +++ b/bfs.h @@ -22,7 +22,7 @@ #define BFS_H #ifndef BFS_VERSION -# define BFS_VERSION "1.6" +# define BFS_VERSION "1.7" #endif #ifndef BFS_HOMEPAGE -- cgit v1.2.3