Skip to content

Commit 0ba6091

Browse files
committed
Bump to v6.8.0-rc1+dev164 and update ReadMe
Small edit to comments in cfe_version.h
1 parent df2de6c commit 0ba6091

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ The detailed cFE user's guide can be viewed at <https://github.com/nasa/cFS/blob
1010

1111
## Version History
1212

13+
### Development Build: 6.8.0-rc1+dev164
14+
15+
- Keeps task names under 16 chars to make more debugger friendly, regardless
16+
of the OSAL limit. Task name shows up as `ES_BG_TASK`
17+
- Move ES typedefs shared across API and telemetry messages into the `cfe_es_extern_typedefs.h`.
18+
- Move all ES typedefs that define the telemetry interface and structures that define the output of commands that write data files into this group (query all apps, query all tasks, query all CDS).
19+
- Remove some localized definitions and replace with MISSION scope definitions where appropriate/necessary.
20+
- Adjust `strncpy()` call to avoid compiler warning
21+
- Cast fixed width types to the type used in the `printf` call. Removes `printf` type warnings on the 32-bit RTEMS build.
22+
- See <https://github.com/nasa/cFE/pull/991>
23+
1324
### Development Build: 6.8.0-rc1+dev150
1425

1526
- Provide new Library API similar to App API

fsw/cfe-core/src/inc/cfe_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535

3636

3737
/* Development Build Macro Definitions */
38-
#define CFE_BUILD_NUMBER 150 /*!< Development Build: Number of commits since baseline */
38+
#define CFE_BUILD_NUMBER 164 /*!< Development Build: Number of commits since baseline */
3939
#define CFE_BUILD_BASELINE "v6.8.0-rc1" /*!< Development Build: git tag that is the base for the current development */
4040

4141
/* Version Macro Definitions */
4242
#define CFE_MAJOR_VERSION 6 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
4343
#define CFE_MINOR_VERSION 7 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
44-
#define CFE_REVISION 99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. If set to 99 it indicates a development version. */
44+
#define CFE_REVISION 99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. A value of "99" indicates a development version. */
4545
#define CFE_MISSION_REV 0 /*!< @brief ONLY USED by MISSION Implementations. Mission revision */
4646

4747
#define CFE_STR_HELPER(x) #x /*!< @brief Helper function to concatenate strings from integer macros */

0 commit comments

Comments
 (0)