nuttx icon indicating copy to clipboard operation
nuttx copied to clipboard

version.h for version 12.4 is incorrect

Open nopnop2002 opened this issue 1 year ago • 2 comments

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))

nopnop2002 avatar Jan 08 '24 03:01 nopnop2002

12.4 release is WIP.

jerpelea avatar Jan 08 '24 08:01 jerpelea

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

chenzhihong007 avatar Jan 26 '24 02:01 chenzhihong007