diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-05-17 19:16:58 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-05-17 19:16:58 -0400 |
commit | f5bd17d10e864eddb8576e8fca603ed993a863b8 (patch) | |
tree | 44f06825ca9156d4fe0ab9f726a816ce900801e1 | |
parent | 6437f9a20e5b05f975e7d258832e155439b3089e (diff) | |
download | bfs-f5bd17d10e864eddb8576e8fca603ed993a863b8.tar.xz |
Release 1.0.11.0.1
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | RELEASES.md | 12 | ||||
-rw-r--r-- | bfs.h | 2 |
3 files changed, 14 insertions, 2 deletions
@@ -10,7 +10,7 @@ ##################################################################### ifeq ($(wildcard .git),) -VERSION := 1.0 +VERSION := 1.0.1 else VERSION := $(shell git describe --always) endif diff --git a/RELEASES.md b/RELEASES.md index 1032c01..b4911d7 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -2,6 +2,18 @@ === +1.0.1 +----- + +**May 17, 2017** + +Bugfix release. + +- Portability fixes that mostly affect GNU Hurd +- Implemented `-D exec` +- Made `-quit` not disable the implicit `-print` + + 1.0 --- @@ -24,7 +24,7 @@ #include <time.h> #ifndef BFS_VERSION -# define BFS_VERSION "1.0" +# define BFS_VERSION "1.0.1" #endif #ifndef BFS_HOMEPAGE |