change the version from 0.4.0 to 1.0.0

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1893 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
dzzxzz 2011-12-31 06:22:46 +00:00
parent 072fa60bdc
commit 86c5646fc0
2 changed files with 3 additions and 2 deletions

View File

@ -33,8 +33,9 @@ extern "C" {
/**
* RT-Thread version information
*/
#define RT_VERSION 4L /**< major version number */
#define RT_VERSION 1L /**< major version number */
#define RT_SUBVERSION 0L /**< minor version number */
#define RT_REVISION 0L /**< revise version number */
/**
* RT-Thread basic data type definitions

View File

@ -465,7 +465,7 @@ void rt_show_version(void)
{
rt_kprintf("\n \\ | /\n");
rt_kprintf("- RT - Thread Operating System\n");
rt_kprintf(" / | \\ 0.%d.%d build %s\n", RT_VERSION, RT_SUBVERSION, __DATE__);
rt_kprintf(" / | \\ %d.%d.%d build %s\n", RT_VERSION, RT_SUBVERSION, RT_REVISION, __DATE__);
rt_kprintf(" 2006 - 2011 Copyright by rt-thread team\n");
}