summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--RELEASES.md8
-rw-r--r--bfs.h2
3 files changed, 11 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9755580..ed6c6ef 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
############################################################################
# bfs #
-# Copyright (C) 2015-2018 Tavian Barnes <tavianator@tavianator.com> #
+# Copyright (C) 2015-2019 Tavian Barnes <tavianator@tavianator.com> #
# #
# Permission to use, copy, modify, and/or distribute this software for any #
# purpose with or without fee is hereby granted. #
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 1.3
+VERSION := 1.3.1
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index f1f80f9..83d250e 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,14 @@
===
+1.3.1
+-----
+
+**January 3, 2019**
+
+- Fixed some portability problems affecting FreeBSD
+
+
1.3
---
diff --git a/bfs.h b/bfs.h
index 7369660..1174da4 100644
--- a/bfs.h
+++ b/bfs.h
@@ -18,7 +18,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "1.3"
+# define BFS_VERSION "1.3.1"
#endif
#ifndef BFS_HOMEPAGE