From 4acef9b1cdde25580765b20f8396a70d98e6b47e Mon Sep 17 00:00:00 2001 From: kk Date: Sat, 29 Mar 2025 11:12:14 +0800 Subject: [PATCH] Update include/rtdef.h version to 5.2.1 --- include/rtdef.h | 2 +- src/Kconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/rtdef.h b/include/rtdef.h index b1f8e48c6f..d79c745078 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 0 /**< Patch version number (x.x.X) */ +#define RT_VERSION_PATCH 1 /**< 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) diff --git a/src/Kconfig b/src/Kconfig index 77ec8e7c61..099f95e9cf 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -433,7 +433,7 @@ endif config RT_VER_NUM hex - default 0x50200 + default 0x50201 help RT-Thread version number