|
23 | 23 | #define TO_LAB_VERSION_H |
24 | 24 |
|
25 | 25 | /*! @file to_lab_version.h |
26 | | - * @brief Purpose: |
27 | | - * |
| 26 | + * @brief Purpose: |
| 27 | + * |
28 | 28 | * The TO Lab Application header file containing version information |
29 | | - * |
| 29 | + * |
30 | 30 | */ |
31 | 31 |
|
32 | 32 | /* Development Build Macro Definitions */ |
33 | | -#define TO_LAB_BUILD_NUMBER 6 /*!< Development Build: Number of commits since baseline */ |
34 | | -#define TO_LAB_BUILD_BASELINE "v2.4.0-rc1" /*!< Development Build: git tag that is the base for the current development */ |
| 33 | +#define TO_LAB_BUILD_NUMBER 9 /*!< Development Build: Number of commits since baseline */ |
| 34 | +#define TO_LAB_BUILD_BASELINE \ |
| 35 | + "v2.4.0-rc1" /*!< Development Build: git tag that is the base for the current development */ |
35 | 36 |
|
36 | 37 | /* Version Macro Definitions */ |
37 | 38 |
|
38 | | -#define TO_LAB_MAJOR_VERSION 2 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */ |
39 | | -#define TO_LAB_MINOR_VERSION 3 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */ |
40 | | -#define TO_LAB_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */ |
41 | | -#define TO_LAB_MISSION_REV 0 /*!< @brief ONLY USED by MISSION Implementations. Mission revision */ |
| 39 | +#define TO_LAB_MAJOR_VERSION 2 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */ |
| 40 | +#define TO_LAB_MINOR_VERSION 3 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */ |
| 41 | +#define TO_LAB_REVISION 99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */ |
| 42 | +#define TO_LAB_MISSION_REV 0 /*!< @brief ONLY USED by MISSION Implementations. Mission revision */ |
42 | 43 |
|
43 | 44 | #define TO_LAB_STR_HELPER(x) #x /*!< @brief Helper function to concatenate strings from integer macros */ |
44 | 45 | #define TO_LAB_STR(x) TO_LAB_STR_HELPER(x) /*!< @brief Helper function to concatenate strings from integer macros */ |
45 | 46 |
|
46 | | -/*! @brief Development Build Version Number. |
| 47 | +/*! @brief Development Build Version Number. |
47 | 48 | * @details Baseline git tag + Number of commits since baseline. @n |
48 | 49 | * See @ref cfsversions for format differences between development and release versions. |
49 | 50 | */ |
50 | | -#define TO_LAB_VERSION TO_LAB_BUILD_BASELINE "+dev" TO_LAB_STR(TO_LAB_BUILD_NUMBER) |
| 51 | +#define TO_LAB_VERSION TO_LAB_BUILD_BASELINE "+dev" TO_LAB_STR(TO_LAB_BUILD_NUMBER) |
51 | 52 |
|
52 | 53 | /*! @brief Development Build Version String. |
53 | | - * @details Reports the current development build's baseline, number, and name. Also includes a note about the latest official version. @n |
54 | | - * See @ref cfsversions for format differences between development and release versions. |
55 | | -*/ |
56 | | -#define TO_LAB_VERSION_STRING \ |
57 | | - " TO Lab DEVELOPMENT BUILD " \ |
58 | | - TO_LAB_VERSION \ |
59 | | - ", Last Official Release: v2.3.0" /* For full support please use this version */ |
| 54 | + * @details Reports the current development build's baseline, number, and name. Also includes a note about the latest |
| 55 | + * official version. @n See @ref cfsversions for format differences between development and release versions. |
| 56 | + */ |
| 57 | +#define TO_LAB_VERSION_STRING \ |
| 58 | + " TO Lab DEVELOPMENT BUILD " TO_LAB_VERSION \ |
| 59 | + ", Last Official Release: v2.3.0" /* For full support please use this version */ |
60 | 60 |
|
61 | 61 | #endif /* TO_LAB_VERSION_H */ |
62 | 62 |
|
|
0 commit comments