Skip to content

Commit

Permalink
Update build baseline and bump to v7.0.0-rc4+dev39
Browse files Browse the repository at this point in the history
- Set new build baseline for cFS-Caelum-rc4: v7.0.0-rc4
- Standardize development indicators in cfe_version.h to use 0xFF in
MissionRev to indicate development
  • Loading branch information
astrogeco committed Dec 1, 2021
1 parent b2e37c8 commit 4599f33
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 7 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,25 @@ The detailed cFE user's guide can be viewed at <https://github.com/nasa/cFS/blob

## Version History

### Development Build: v7.0.0-rc4+dev39

- Use cfe time clock state enum t in cmd/tlm and handling
- EVS functional test add for different event types
- Patch for recursive event loop
- CFE_ES_MemAddOff structure to associated CFE_ES_MemAddress_t and CFE_ES_MemOffset_t
- Avoid aliasing warnings
- Message ID type improvements
- CFE_SB_ValueToMsgId/MsgIdToValue wrappers
- Use CFE_TIME_ClockState_Enum_t in cmd/tlm and handling
- Consolidate repeated MSG stub setup in sb_UT
- Return type conversions in CFE_ES_GetTaskName
- Better message type pointer conversion
- Replacing hardcoded message limit in TIME services
- Use macro in CFE_ResourceId_IsDefined
- Checking against IsNewOffset only
- Set new build baseline for cFS-Caelum-rc4: v7.0.0-rc4
- See <https://github.com/nasa/cFE/pull/2001> and <https://github.com/nasa/cFS/pull/390>

### Development Build: v6.8.0-rc1+dev1030

- Grammatical cleanup of requirements
Expand Down
21 changes: 14 additions & 7 deletions modules/core_api/fsw/inc/cfe_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,21 @@
#define CFE_VERSION_H

/* Development Build Macro Definitions */
#define CFE_BUILD_NUMBER 1030 /**< @brief Development: Number of development commits since baseline */
#define CFE_BUILD_BASELINE "v6.8.0-rc1" /**< @brief Development: Reference git tag for build number */
#define CFE_BUILD_NUMBER 39 /**< @brief Development: Number of development commits since baseline */
#define CFE_BUILD_BASELINE "v7.0.0-rc4" /**< @brief Development: Reference git tag for build number */

/* Version Macro Definitions updated for official releases only */
#define CFE_MAJOR_VERSION 6 /**< @brief Major release version (Former for Revision == 99) */
#define CFE_MINOR_VERSION 7 /**< @brief Minor release version (Former for Revision == 99) */
#define CFE_REVISION 99 /**< @brief Revision, 99 indicates development */
#define CFE_MISSION_REV 0 /**< @brief Mission revision, reserved for mission use */
#define CFE_MAJOR_VERSION 6 /**< @brief Major release version (Former for Revision == 99) */
#define CFE_MINOR_VERSION 7 /**< @brief Minor release version (Former for Revision == 99) */
#define CFE_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision number. */

/*!
* @brief Mission revision.
*
* Set to 0 on OFFICIAL releases, and set to 255 (0xFF) on development versions.
* Values 1-254 are reserved for mission use to denote patches/customizations as needed.
*/
#define CFE_MISSION_REV 0xFF /**< @brief Mission revision, reserved for mission use */

#define CFE_STR_HELPER(x) #x /**< @brief Convert argument to string */
#define CFE_STR(x) CFE_STR_HELPER(x) /**< @brief Expand macro before conversion */
Expand All @@ -55,6 +62,6 @@
* and official releases.
*/
#define CFE_VERSION_STRING \
" cFE DEVELOPMENT BUILD " CFE_SRC_VERSION " (Codename: Bootes), Last Official Release: cfe v6.7.0"
" cFE DEVELOPMENT BUILD " CFE_SRC_VERSION " (Codename: Draco), Last Official Release: cfe v6.7.0"

#endif /* CFE_VERSION_H */

0 comments on commit 4599f33

Please sign in to comment.