summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-10-21 10:48:44 -0400
committerTavian Barnes <tavianator@tavianator.com>2022-10-21 10:48:44 -0400
commit9f16f6d73c6793b3510385c381d0d4a8f8a7d7ff (patch)
tree05f9d4e7970fb2b32caec28b520b03fb5cf5e9e3
parent29621909d87c0c7f3bb5a7438f80be8f006ca7aa (diff)
downloadbfs-9f16f6d73c6793b3510385c381d0d4a8f8a7d7ff.tar.xz
Release 2.6.22.6.2
-rw-r--r--Makefile2
-rw-r--r--docs/CHANGELOG.md14
-rw-r--r--src/bfs.h2
3 files changed, 16 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d6a61b0..bf99a8e 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ VERSION := $(shell git describe --always 2>/dev/null)
endif
ifndef VERSION
-VERSION := 2.6.1
+VERSION := 2.6.2
endif
ifndef OS
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 9d02e8e..ff1c1f7 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,6 +1,20 @@
2.*
===
+2.6.2
+-----
+
+**October 21, 2022**
+
+- Fixed use of uninitialized memory on parsing errors involving `-fprintf`
+
+- Fixed Android build issues ([#96])
+
+- Refactored the test suite
+
+[#96]: https://github.com/tavianator/bfs/issues/96
+
+
2.6.1
-----
diff --git a/src/bfs.h b/src/bfs.h
index cf81412..d611e82 100644
--- a/src/bfs.h
+++ b/src/bfs.h
@@ -22,7 +22,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "2.6.1"
+# define BFS_VERSION "2.6.2"
#endif
#ifndef BFS_HOMEPAGE