Skip to content

Commit

Permalink
Release 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tavianator committed Mar 27, 2022
1 parent c5ad36d commit c04ed01
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
############################################################################

ifeq ($(wildcard .git),)
VERSION := 2.4.1
VERSION := 2.5
else
VERSION := $(shell git describe --always)
endif
Expand Down
27 changes: 27 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
2.*
===

2.5
---

**March 27, 20222**

- Added compiler-style context for errors and warnings.
Errors look like this:

$ bfs -nam needle
bfs: error: bfs -nam needle
bfs: error: ~~~~
bfs: error: Unknown argument; did you mean -name?

and warnings look like this:

$ bfs -print -name 'needle'
bfs: warning: bfs -print -name needle
bfs: warning: ~~~~~~~~~~~~
bfs: warning: The result of this expression is ignored.

- Updated from C99 to C11

- Fixed the tests when built against musl

- Fixed a build error reported on Manjaro


2.4.1
-----

Expand Down
2 changes: 1 addition & 1 deletion bfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define BFS_H

#ifndef BFS_VERSION
# define BFS_VERSION "2.4.1"
# define BFS_VERSION "2.5"
#endif

#ifndef BFS_HOMEPAGE
Expand Down

0 comments on commit c04ed01

Please sign in to comment.