summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2018-07-15 14:41:09 -0400
committerTavian Barnes <tavianator@tavianator.com>2018-07-15 14:41:09 -0400
commit45eafe9cf597c071029d61a9625bb96034d5aac9 (patch)
treee503ccc2570b2775b00b90cf1d231d16eb7fa72d
parent6168bbdb7665ba40d351eae1ab1f570522677b63 (diff)
downloadbfs-45eafe9cf597c071029d61a9625bb96034d5aac9.tar.xz
Release 1.2.31.2.3
-rw-r--r--Makefile2
-rw-r--r--RELEASES.md12
-rw-r--r--bfs.h2
3 files changed, 14 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ffa8e82..cb6a4a0 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
############################################################################
ifeq ($(wildcard .git),)
-VERSION := 1.2.2
+VERSION := 1.2.3
else
VERSION := $(shell git describe --always)
endif
diff --git a/RELEASES.md b/RELEASES.md
index b730801..fcc3e14 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -2,6 +2,18 @@
===
+1.2.3
+-----
+
+**July 15, 2018**
+
+- Fixed `test_depth_error` on filesystems that don't fill in `d_type`
+- Fixed the build on Linux architectures that don't have the `statx()` syscall (ia64, sh4)
+- Fixed use of AT_EMPTY_PATH for fstatat on systems that don't support it (Hurd)
+- Fixed `ARG_MAX` accounting on architectures with large pages (ppc64le)
+- Fixed the build against the upcoming glibc 2.28 release that includes its own `statx()` wrapper
+
+
1.2.2
-----
diff --git a/bfs.h b/bfs.h
index 7b90b1a..5ed6620 100644
--- a/bfs.h
+++ b/bfs.h
@@ -18,7 +18,7 @@
#define BFS_H
#ifndef BFS_VERSION
-# define BFS_VERSION "1.2.2"
+# define BFS_VERSION "1.2.3"
#endif
#ifndef BFS_HOMEPAGE