From 86fecd235c044d2a4727b6ea6cd88fcd911bb0b7 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 24 Apr 2017 21:23:50 -0400 Subject: Release 1.0 --- Makefile | 2 +- RELEASES.md | 20 ++++++++++++++++++++ bfs.h | 4 ++-- bftw.c | 2 +- bftw.h | 2 +- color.c | 2 +- color.h | 2 +- eval.c | 2 +- parse.c | 2 +- tests.sh | 11 +++++++++++ util.c | 2 +- util.h | 2 +- 12 files changed, 42 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index a4f4cdd..85680a0 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ ##################################################################### ifeq ($(wildcard .git),) -VERSION := 0.96 +VERSION := 1.0 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index fdcf125..1032c01 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,23 @@ +1.* +=== + + +1.0 +--- + +**April 24, 2017** + +This is the first release of bfs with support for all of GNU find's primitives. + +Changes since 0.96: + +- Implemented `-fstype` +- Implemented `-exec/-execdir ... +` +- Implemented BSD's `-X` +- Fixed the tests under Bash 3 (mostly for macOS) +- Some minor optimizations and fixes + + 0.* === diff --git a/bfs.h b/bfs.h index 3fd66a5..d3aa80e 100644 --- a/bfs.h +++ b/bfs.h @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes * + * Copyright (C) 2015-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * @@ -24,7 +24,7 @@ #include #ifndef BFS_VERSION -# define BFS_VERSION "0.96" +# define BFS_VERSION "1.0" #endif #ifndef BFS_HOMEPAGE diff --git a/bftw.c b/bftw.c index 05abaf6..f717094 100644 --- a/bftw.c +++ b/bftw.c @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes * + * Copyright (C) 2015-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * diff --git a/bftw.h b/bftw.h index 1dd2766..8e66b19 100644 --- a/bftw.h +++ b/bftw.h @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes * + * Copyright (C) 2015-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * diff --git a/color.c b/color.c index 65250bf..c591393 100644 --- a/color.c +++ b/color.c @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes * + * Copyright (C) 2015-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * diff --git a/color.h b/color.h index ac5cb7b..85019fc 100644 --- a/color.h +++ b/color.h @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes * + * Copyright (C) 2015-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * diff --git a/eval.c b/eval.c index 5de25ec..67f46d6 100644 --- a/eval.c +++ b/eval.c @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes * + * Copyright (C) 2015-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * diff --git a/parse.c b/parse.c index 25791cf..dde22bd 100644 --- a/parse.c +++ b/parse.c @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes * + * Copyright (C) 2015-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * diff --git a/tests.sh b/tests.sh index e3cdb52..d06c204 100755 --- a/tests.sh +++ b/tests.sh @@ -1,5 +1,16 @@ #!/bin/bash +##################################################################### +# bfs # +# Copyright (C) 2015-2017 Tavian Barnes # +# # +# This program is free software. It comes without any warranty, to # +# the extent permitted by applicable law. You can redistribute it # +# and/or modify it under the terms of the Do What The Fuck You Want # +# To Public License, Version 2, as published by Sam Hocevar. See # +# the COPYING file or http://www.wtfpl.net/ for more details. # +##################################################################### + set -o physical umask 022 diff --git a/util.c b/util.c index 61a23f3..e64157b 100644 --- a/util.c +++ b/util.c @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2016 Tavian Barnes * + * Copyright (C) 2016-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * diff --git a/util.h b/util.h index fa3e247..256abd8 100644 --- a/util.h +++ b/util.h @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2016 Tavian Barnes * + * Copyright (C) 2016-2017 Tavian Barnes * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * -- cgit v1.2.3