diff --git a/README.rst b/README.rst index 368d2ae..80e32cc 100644 --- a/README.rst +++ b/README.rst @@ -3,8 +3,8 @@ Vanilla Squad ============= :Author: Daniel Walker -:Version: 6.0.1 -:Date: 2022-07-27 +:Version: 6.0.2 +:Date: 2022-07-28 Overview ======== diff --git a/changelog b/changelog index fdbaed0..bf4eea1 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,6 @@ +6.0.2: + - Fixed a typo in the vasqHexDump output. + 6.0.1: - Replaced the macro SYS_gettid with __NR_gettid. diff --git a/include/vasq/definitions.h b/include/vasq/definitions.h index 73541e0..8b91704 100644 --- a/include/vasq/definitions.h +++ b/include/vasq/definitions.h @@ -9,7 +9,7 @@ /** * @brief Current version of the library. */ -#define VASQ_VERSION "6.0.1" +#define VASQ_VERSION "6.0.2" #ifndef NO_OP #define NO_OP ((void)0) diff --git a/source/logger.c b/source/logger.c index a936755..7a4d77b 100644 --- a/source/logger.c +++ b/source/logger.c @@ -449,7 +449,7 @@ vasqHexDump(const vasqLogger *logger, VASQ_CONTEXT_DECL, const char *name, const remote_errno = errno; logToBuffer(logger, dump_level, file_name, function_name, line_no, &dst, remaining, - "%s (%zu bytes%s):", name, size, (size == 1) ? "" : "s"); + "%s (%zu byte%s):", name, size, (size == 1) ? "" : "s"); remaining -= (dst - output); actual_dump_size = MIN(size, VASQ_HEXDUMP_SIZE);