From 00a5fe8a7408ae26862921aea893f808218d9fa8 Mon Sep 17 00:00:00 2001 From: Rbb666 Date: Thu, 21 Aug 2025 19:07:37 +0800 Subject: [PATCH] Update RT_VERSION to 5.2.2. --- include/rtdef.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rtdef.h b/include/rtdef.h index 8e2f26b60fe..1d6993eab63 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -83,7 +83,7 @@ extern "C" { /* RT-Thread version information */ #define RT_VERSION_MAJOR 5 /**< Major version number (X.x.x) */ #define RT_VERSION_MINOR 2 /**< Minor version number (x.X.x) */ -#define RT_VERSION_PATCH 1 /**< Patch version number (x.x.X) */ +#define RT_VERSION_PATCH 2 /**< Patch version number (x.x.X) */ /* e.g. #if (RTTHREAD_VERSION >= RT_VERSION_CHECK(4, 1, 0) */ #define RT_VERSION_CHECK(major, minor, revise) ((major * 10000U) + (minor * 100U) + revise)