summaryrefslogtreecommitdiffstats
path: root/RELEASES.md
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-03-27 14:20:07 -0400
committerTavian Barnes <tavianator@tavianator.com>2022-03-27 14:20:07 -0400
commitc04ed01f5c008733c4d4575b888e1c40a8797e24 (patch)
tree04dc19ad69bee59e0378219e530f36f6aece0a83 /RELEASES.md
parentc5ad36dd179c63517738cecaaf8474d8fd665a98 (diff)
downloadbfs-c04ed01f5c008733c4d4575b888e1c40a8797e24.tar.xz
Release 2.52.5
Diffstat (limited to 'RELEASES.md')
-rw-r--r--RELEASES.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 0495c6b..5bb2b3f 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -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
-----