Skip to content

Commit

Permalink
Increase version to v2.3.0+dev44 and update README
Browse files Browse the repository at this point in the history
Set "development build" part of version string to ALL CAPS for readability
  • Loading branch information
Gerardo E. Cruz-Ortiz committed Aug 5, 2020
1 parent 2aabb8c commit a4d06c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ To send telemtry to the "ground" or UDP/IP port, edit the subscription table in

## Version History

### Development Build: 2.3.0+dev45

- Fixes bug where an unset address values caused subscriptions to MsgId 0 over 200 times. Added a `TO_UNUSED` entry at the end of the subscription list and a break in the subscription loop when `TO_UNUSED` found. No more subscriptions on the unused table slots (no MsgId 0 subscriptions).
- Corrects return value of `TO_LAB_init()` to be `int32` instead of `int`. Declaration now matches definition, and app builds without errors.
- Add build number and baseline to version reporting.
- See <https://github.com/nasa/to_lab/pull/53>

### Development Build: 2.3.7

- Makes the `TO_LAB_Subs` table into a CFE_TBL-managed table.
Expand Down
4 changes: 2 additions & 2 deletions fsw/src/to_lab_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/

/* Development Build Macro Definitions */
#define TO_LAB_BUILD_NUMBER 43 /*!< Development Build: Number of commits since baseline */
#define TO_LAB_BUILD_NUMBER 44 /*!< Development Build: Number of commits since baseline */
#define TO_LAB_BUILD_BASELINE "v2.3.0" /*!< Development Build: git tag that is the base for the current development */

/* Version Macro Definitions */
Expand All @@ -54,7 +54,7 @@
* See @ref cfsversions for format differences between development and release versions.
*/
#define TO_LAB_VERSION_STRING \
" TO Lab Development Build " \
" TO Lab DEVELOPMENT BUILD " \
TO_LAB_VERSION \
", Last Official Release: v2.3.0" /* For full support please use this version */

Expand Down

0 comments on commit a4d06c0

Please sign in to comment.