summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-04-24 21:23:50 -0400
committerTavian Barnes <tavianator@tavianator.com>2017-04-24 21:48:09 -0400
commit86fecd235c044d2a4727b6ea6cd88fcd911bb0b7 (patch)
tree8242551b1bd49cab879b095860cb21748c90c532
parent1efa932e4aeb007eddb6424a90bf0fc05dba7e4d (diff)
downloadbfs-86fecd235c044d2a4727b6ea6cd88fcd911bb0b7.tar.xz
Release 1.01.0
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md20
-rw-r--r--bfs.h4
-rw-r--r--bftw.c2
-rw-r--r--bftw.h2
-rw-r--r--color.c2
-rw-r--r--color.h2
-rw-r--r--eval.c2
-rw-r--r--parse.c2
-rwxr-xr-xtests.sh11
-rw-r--r--util.c2
-rw-r--r--util.h2
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 <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
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 <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 *
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 <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 *
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 <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 *
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 <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 *
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 <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 *
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 <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 *
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 <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
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 <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 *
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 <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 *