From 5d62c2947b15e5d91e2a9c0ca8834c0cf4e3d152 Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Mon, 4 Jul 2022 16:44:32 +0200 Subject: [PATCH] Update ChangeLog --- ChangeLog | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c0cad3c..c1ee251 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,34 @@ -=== tio v1.40 === +=== tio v1.41 === + + + +Changes since tio v1.40: + + * Rename --hex-mode to --hexadecimal + + * Enable buffered writing + + Read block of bytes from input and process same block for output. This + will speed things up by reducing I/O overhead. + + * Enable buffered reading + + Read block of bytes from input and process byte by byte for output. This + will speed things up by reducing I/O overhead. + + * Refactoring + + * Cleanup stdout flushing + + Flushing is not needed since we disabled buffering of stdout. + + * Simplify stdout_configure() code + + * Simplify stdin_configure() code + + * Update man page + + * Update README