From a6f49b2d0da717af22e2a26e9eb21edca2d99f5e Mon Sep 17 00:00:00 2001 From: Daniel Walker Date: Wed, 5 Apr 2023 23:45:52 -0400 Subject: [PATCH] added missing include in test.h --- changelog | 3 +++ include/scrutiny/scrutiny.h | 2 +- include/scrutiny/test.h | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/changelog b/changelog index 9583fb8..59a58b7 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,6 @@ +0.5.2: + - Added missing include in test.h. + 0.5.1: - Improved the display of chars and bytes when an assertion fails. - Made SCR_TEST_SKIP an alias for a function. diff --git a/include/scrutiny/scrutiny.h b/include/scrutiny/scrutiny.h index d7e081c..9590d36 100644 --- a/include/scrutiny/scrutiny.h +++ b/include/scrutiny/scrutiny.h @@ -9,7 +9,7 @@ /** * @brief Scrutiny's version. */ -#define SCRUTINY_VERSION "0.5.1" +#define SCRUTINY_VERSION "0.5.2" #include "run.h" #include "test.h" diff --git a/include/scrutiny/test.h b/include/scrutiny/test.h index 3d0a89f..f2f2ff8 100644 --- a/include/scrutiny/test.h +++ b/include/scrutiny/test.h @@ -6,6 +6,7 @@ #ifndef SCRUTINY_TEST_H #define SCRUTINY_TEST_H +#include #include #include "definitions.h"