From d52efa35e1d6d02495434e9447ee04c21b2e1010 Mon Sep 17 00:00:00 2001 From: Konstantin Khlebnikov Date: Wed, 24 Aug 2022 11:29:20 +0300 Subject: [PATCH] ioping: release 1.3 Signed-off-by: Konstantin Khlebnikov --- changelog | 27 +++++++++++++++++++++++++++ ioping.c | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/changelog b/changelog index a98a018..fe882c7 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,31 @@ +v1.3 / 2022-08-24 +================== + + * Workaround for glibc 2.36 sys/mount.h + * ioping: add RWF_HIPRI + * ioping: add "make static" + * ioping: print notice "slow"/"fast" when twice slower/faster than average + * ioping: cleanup timing notice + * ioping: fix mingw build + * ioping: add option -burst + * ioping: include stdbool + * ioping: restore CPPFLAGS in makefile + * ioping: use 64-bit printf format + * ioping: switch mingw build to 64-bit and ucrt + * ioping: retrive device size and name for windows + * ioping: use F_FULLFSYNC for OSX + * ioping: move fdatasync after write out of make_request() + * ioping: implement O_SYNC for windows by FILE_FLAG_WRITE_THROUGH + * ioping: fallback from non-cached to direct only for reads + * ioping: rename global target fd variable + * ioping: add option -e, -entropy for deterministic randomization + * ioping: add support nowait I/O (RWF_NOWAIT) + * ioping: print help and version into stdout + * ioping: add option -I|-time to print current time + * ioping: describe json format in manpage + * ioping: add human-readable localtime into json output + v1.2 / 2020-02-02 ================== diff --git a/ioping.c b/ioping.c index 5a6f781..dfe6be9 100644 --- a/ioping.c +++ b/ioping.c @@ -19,7 +19,7 @@ */ #ifndef VERSION -# define VERSION "1.2" +# define VERSION "1.3" #endif #ifndef EXTRA_VERSION