Skip to content

Commit

Permalink
Bump to v1.6.0-rc4+dev6
Browse files Browse the repository at this point in the history
  • Loading branch information
astrogeco committed Nov 18, 2021
1 parent 20a2a34 commit 0790d74
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 14 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ This is a collection of APIs abstracting platform specific functionality to be l
## Version History


### Development Build: v1.6.0-rc4+dev6

- Sleep before exit when printing
- Check the address in PSP get segment stubs
- See <https://github.com/nasa/PSP/pull/318> and <https://github.com/nasa/cFS/pull/390>

### Development Build: v1.5.0-rc1+dev124

- Relax strict of check before calling "Init" function of module, only check that module type is not invalid
Expand Down
10 changes: 5 additions & 5 deletions fsw/mcp750-vxworks/inc/psp_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@
/*
* Development Build Macro Definitions
*/
#define CFE_PSP_IMPL_BUILD_NUMBER 124
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.5.0-rc1"
#define CFE_PSP_IMPL_BUILD_NUMBER 6
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.6.0-rc4"

/*
* Version Macro Definitions
*/
#define CFE_PSP_IMPL_MAJOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
#define CFE_PSP_IMPL_MINOR_VERSION 4 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define CFE_PSP_IMPL_MINOR_VERSION 5 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define CFE_PSP_IMPL_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision number. */
#define CFE_PSP_IMPL_MISSION_REV \
99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. A value of "99" indicates an unreleased \
development version. */

#define CFE_PSP_IMPL_CODENAME "Bootes"
#define CFE_PSP_IMPL_CODENAME "Draco"

/*
* Tools to construct version string
Expand All @@ -63,6 +63,6 @@
*/
#define CFE_PSP_IMPL_VERSION_STRING \
" PSP Development Build " CFE_PSP_IMPL_VERSION /* Codename for current development */ \
", Last Official Release: psp v1.4.0" /* For full support please use this version */
", Last Official Release: psp v1.5.0" /* For full support please use this version */

#endif /* _psp_version_ */
10 changes: 5 additions & 5 deletions fsw/pc-linux/inc/psp_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@
/*
* Development Build Macro Definitions
*/
#define CFE_PSP_IMPL_BUILD_NUMBER 124
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.5.0-rc1"
#define CFE_PSP_IMPL_BUILD_NUMBER 4
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.6.0-rc1"

/*
* Version Macro Definitions
*/
#define CFE_PSP_IMPL_MAJOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
#define CFE_PSP_IMPL_MINOR_VERSION 4 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define CFE_PSP_IMPL_MINOR_VERSION 5 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define CFE_PSP_IMPL_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision number. */
#define CFE_PSP_IMPL_MISSION_REV \
99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. A value of "99" indicates an unreleased \
development version. */

#define CFE_PSP_IMPL_CODENAME "Bootes"
#define CFE_PSP_IMPL_CODENAME "Draco"

/*
* Tools to construct version string
Expand All @@ -63,6 +63,6 @@
*/
#define CFE_PSP_IMPL_VERSION_STRING \
" PSP DEVELOPMENT BUILD " CFE_PSP_IMPL_VERSION \
", Last Official Release: psp v1.4.0" /* For full support please use this version */
", Last Official Release: psp v1.5.0" /* For full support please use this version */

#endif /* _psp_version_ */
8 changes: 4 additions & 4 deletions fsw/pc-rtems/inc/psp_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@
/*
* Development Build Macro Definitions
*/
#define CFE_PSP_IMPL_BUILD_NUMBER 124
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.5.0-rc1"
#define CFE_PSP_IMPL_BUILD_NUMBER 6
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.6.0-rc4"

/*
* Version Macro Definitions
*/
#define CFE_PSP_IMPL_MAJOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
#define CFE_PSP_IMPL_MINOR_VERSION 4 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define CFE_PSP_IMPL_MINOR_VERSION 5 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define CFE_PSP_IMPL_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision number. */
#define CFE_PSP_IMPL_MISSION_REV \
99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. A value of "99" indicates an unreleased \
development version. */

#define CFE_PSP_IMPL_CODENAME "Bootes"
#define CFE_PSP_IMPL_CODENAME "Draco"

/*
* Tools to construct version string
Expand Down

0 comments on commit 0790d74

Please sign in to comment.