diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-12 22:13:49 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-12 22:13:49 -0400 |
commit | 2acd897857fe301dfc6f5a8648e0124cd8515b4e (patch) | |
tree | 3385cb9e26072c4e3b6f7978592f797c54c9122e | |
parent | 735a2979a37251dc447274aa888ad77ded126457 (diff) | |
download | bfs-2acd897857fe301dfc6f5a8648e0124cd8515b4e.tar.xz |
Release 3.0.33.0.3
-rw-r--r-- | GNUmakefile | 2 | ||||
-rw-r--r-- | docs/CHANGELOG.md | 14 | ||||
-rw-r--r-- | src/config.h | 2 |
3 files changed, 5 insertions, 13 deletions
diff --git a/GNUmakefile b/GNUmakefile index 69cfe3d..27d6674 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,7 @@ VERSION := $(shell git describe --always 2>/dev/null) endif ifndef VERSION -VERSION := 3.0.2 +VERSION := 3.0.3 endif ifndef OS diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 8e10caa..253dd46 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,16 +1,10 @@ 3.* === -3.1 ---- - -**Coming soon** - -### New features - -- `bfs` now uses `io_uring` on Linux ([#106]) +3.0.3 +----- -- `bfs` now comes with an official benchmark suite ([#126]) +**October 12, 2023** ### Changes @@ -26,8 +20,6 @@ - Fixed a linked-list corruption that could lead to an infinite loop on macOS and other non-Linux, non-FreeBSD platforms ([`773f4a4`]) -[#106]: https://github.com/tavianator/bfs/pull/106 -[#126]: https://github.com/tavianator/bfs/pull/126 [`5f16169`]: https://github.com/tavianator/bfs/commit/5f1616912ba3a7a23ce6bce02df3791b73da38ab [`2572273`]: https://github.com/tavianator/bfs/commit/257227326fe60fe70e80433fd34d1ebcb2f9f623 [`a029d95`]: https://github.com/tavianator/bfs/commit/a029d95b5736a74879f32089514a5a6b63d6efbc diff --git a/src/config.h b/src/config.h index 862a839..980980a 100644 --- a/src/config.h +++ b/src/config.h @@ -22,7 +22,7 @@ # define BFS_COMMAND "bfs" #endif #ifndef BFS_VERSION -# define BFS_VERSION "3.0.2" +# define BFS_VERSION "3.0.3" #endif #ifndef BFS_HOMEPAGE # define BFS_HOMEPAGE "https://tavianator.com/projects/bfs.html" |