diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | RELEASES.md | 20 | ||||
-rw-r--r-- | bfs.h | 4 | ||||
-rw-r--r-- | bftw.c | 2 | ||||
-rw-r--r-- | bftw.h | 2 | ||||
-rw-r--r-- | color.c | 2 | ||||
-rw-r--r-- | color.h | 2 | ||||
-rw-r--r-- | eval.c | 2 | ||||
-rw-r--r-- | parse.c | 2 | ||||
-rwxr-xr-x | tests.sh | 11 | ||||
-rw-r--r-- | util.c | 2 | ||||
-rw-r--r-- | util.h | 2 |
12 files changed, 42 insertions, 11 deletions
@@ -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.* === @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * * * * 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 <time.h> #ifndef BFS_VERSION -# define BFS_VERSION "0.96" +# define BFS_VERSION "1.0" #endif #ifndef BFS_HOMEPAGE @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2015-2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * @@ -1,5 +1,16 @@ #!/bin/bash +##################################################################### +# bfs # +# Copyright (C) 2015-2017 Tavian Barnes <tavianator@tavianator.com> # +# # +# 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 @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2016-2017 Tavian Barnes <tavianator@tavianator.com> * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * @@ -1,6 +1,6 @@ /********************************************************************* * bfs * - * Copyright (C) 2016 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2016-2017 Tavian Barnes <tavianator@tavianator.com> * * * * This program is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * |