Skip to content

Commit 5119fc5

Browse files
committed
update:rtthread version number to v5.3.0
1 parent 596f0a8 commit 5119fc5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

include/rtdef.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2006-2024, RT-Thread Development Team
2+
* Copyright (c) 2006-2025 RT-Thread Development Team
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*
@@ -60,6 +60,7 @@
6060
* 2024-01-18 Shell Seperate basical types to a rttypes.h
6161
* Seperate the compiler portings to rtcompiler.h
6262
* 2024-03-30 Meco Man update version number to v5.2.0
63+
* 2025-11-10 Rbb666 update version number to v5.3.0
6364
*/
6465

6566
#ifndef __RT_DEF_H__
@@ -82,8 +83,8 @@ extern "C" {
8283

8384
/* RT-Thread version information */
8485
#define RT_VERSION_MAJOR 5 /**< Major version number (X.x.x) */
85-
#define RT_VERSION_MINOR 2 /**< Minor version number (x.X.x) */
86-
#define RT_VERSION_PATCH 2 /**< Patch version number (x.x.X) */
86+
#define RT_VERSION_MINOR 3 /**< Minor version number (x.X.x) */
87+
#define RT_VERSION_PATCH 0 /**< Patch version number (x.x.X) */
8788

8889
/* e.g. #if (RTTHREAD_VERSION >= RT_VERSION_CHECK(4, 1, 0) */
8990
#define RT_VERSION_CHECK(major, minor, revise) ((major * 10000U) + (minor * 100U) + revise)

0 commit comments

Comments
 (0)