summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md14
-rw-r--r--bfs.h2
3 files changed, 16 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c22a9a7..8db443c 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 2.4
+VERSION := 2.4.1
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index a033e3f..0495c6b 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -1,6 +1,20 @@
2.*
===
+2.4.1
+-----
+
+**February 24, 2022**
+
+- Fixed the build when Oniguruma is not installed in the default search paths ([#82])
+
+- Fixed string encoding bugs with Oniguruma enabled
+
+- Fixed regex error reporting bugs
+
+[#82]: https://github.com/tavianator/bfs/issues/82
+
+
2.4
---
diff --git a/bfs.h b/bfs.h
index 796a2ae..cc87f3c 100644
--- a/bfs.h
+++ b/bfs.h
@@ -22,7 +22,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "2.4"
+# define BFS_VERSION "2.4.1"
#endif
#ifndef BFS_HOMEPAGE