apache / nuttx

Apache NuttX is a mature, real-time embedded operating system (RTOS)
https://nuttx.apache.org/
Apache License 2.0
2.6k stars 1.11k forks source link

version.h for version 12.4 is incorrect #11502

Open nopnop2002 opened 8 months ago

nopnop2002 commented 8 months ago

I updated from version 12.3 to version 12.4. When we build, version.h is automatically generated. However, the contents of version.h are version 12.3.

$ make
Create version.h
LN: platform/board to /home/nop/nuttxspace/apps/platform/dummy
Register: hello
Register: nsh
Register: sh

$ cat $HOME/nuttxspace/nuttx/include/nuttx/version.h
/* version.h -- Autogenerated! Do not edit. */

#ifndef __INCLUDE_NUTTX_VERSION_H
#define __INCLUDE_NUTTX_VERSION_H

#define CONFIG_VERSION_STRING "12.3.0" ---> incorrect
#define CONFIG_VERSION_MAJOR 12
#define CONFIG_VERSION_MINOR 3 ----> incorrect
#define CONFIG_VERSION_PATCH 0
#define CONFIG_VERSION_BUILD "9852428953"

#define CONFIG_VERSION ((CONFIG_VERSION_MAJOR << 16) |\
                        (CONFIG_VERSION_MINOR << 8) |\
                        (CONFIG_VERSION_PATCH))
jerpelea commented 8 months ago

12.4 release is WIP.

chenzhihong007 commented 7 months ago

12.4 release is WIP.

Hi Jerpelea. May I ask when the official version of 12.4 is expected to be released? Thank you! @jerpelea