Skip to content

Commit a53f65c

Browse files
author
Gerardo E. Cruz-Ortiz
committed
Increase version to 1.4.0+dev76 and update readme
Set format of version string to a single line and set "development version" to ALL CAPS.
1 parent f753a50 commit a53f65c

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ This is a collection of APIs abstracting platform specific functionality to be l
88

99
## Version History
1010

11+
### Development Build: 1.4.0+dev76
12+
13+
- Provide a new framework and perform PSP coverage tests. New coverage test executable is built and several files within PSP are targeted.
14+
- See <https://github.com/nasa/PSP/pull/184>
15+
1116
### Development Build: 1.4.0+dev71
1217

1318
- Restructure code to make more amicable for rebuilding in a unit test environment. No major changes, primarily just shifting code between locations/headers to support unit testing.
@@ -35,7 +40,7 @@ This is a collection of APIs abstracting platform specific functionality to be l
3540
- Exception handling is now implemented on POSIX. There is no longer a separate handler for SIGINT - it is now treated as an exception and goes through the normal process which ends up "restarting" CFE. On pc-linux causes the process to exit normally. There is now a mechanism to capture the CTRL+C exception code and use it during normal test cycles.
3641
- See <https://github.com/nasa/PSP/pull/160>
3742

38-
#### Development Build: 1.4.10
43+
### Development Build: 1.4.10
3944

4045
- Implements full-precision microsecond conversion
4146
- See <https://github.com/nasa/PSP/pull/155>

fsw/mcp750-vxworks/inc/psp_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/*
3030
* Development Build Macro Definitions
3131
*/
32-
#define CFE_PSP_IMPL_BUILD_NUMBER 71
32+
#define CFE_PSP_IMPL_BUILD_NUMBER 76
3333
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.4.0+dev"
3434

3535
/*
@@ -57,7 +57,7 @@
5757
* See @ref cfsversions for format differences between development and release versions.
5858
*/
5959
#define CFE_PSP_IMPL_VERSION_STRING \
60-
" PSP Development Build\n " CFE_PSP_IMPL_VERSION " (Codename: Bootes)" /* Codename for current development */ \
61-
"\n Last Official Release: psp v1.4.0" /* For full support please use this version */
60+
" PSP Development Build " CFE_PSP_IMPL_VERSION /* Codename for current development */ \
61+
", Last Official Release: psp v1.4.0" /* For full support please use this version */
6262

6363
#endif /* _psp_version_ */

fsw/pc-linux/inc/psp_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/*
3030
* Development Build Macro Definitions
3131
*/
32-
#define CFE_PSP_IMPL_BUILD_NUMBER 71
32+
#define CFE_PSP_IMPL_BUILD_NUMBER 76
3333
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.4.0+dev"
3434

3535
/*
@@ -57,7 +57,7 @@
5757
* See @ref cfsversions for format differences between development and release versions.
5858
*/
5959
#define CFE_PSP_IMPL_VERSION_STRING \
60-
" PSP Development Build\n " CFE_PSP_IMPL_VERSION " (Codename: Bootes)" /* Codename for current development */ \
61-
"\n Last Official Release: psp v1.4.0" /* For full support please use this version */
60+
" PSP DEVELOPMENT BUILD " CFE_PSP_IMPL_VERSION \
61+
", Last Official Release: psp v1.4.0" /* For full support please use this version */
6262

6363
#endif /* _psp_version_ */

fsw/pc-rtems/inc/psp_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/*
3030
* Development Build Macro Definitions
3131
*/
32-
#define CFE_PSP_IMPL_BUILD_NUMBER 71
32+
#define CFE_PSP_IMPL_BUILD_NUMBER 76
3333
#define CFE_PSP_IMPL_BUILD_BASELINE "v1.4.0+dev"
3434

3535
/*
@@ -57,7 +57,7 @@
5757
* See @ref cfsversions for format differences between development and release versions.
5858
*/
5959
#define CFE_PSP_IMPL_VERSION_STRING \
60-
" PSP Development Build\n " CFE_PSP_IMPL_VERSION " (Codename: Bootes)" /* Codename for current development */ \
61-
"\n Last Official Release: psp v1.4.0" /* For full support please use this version */
60+
" PSP DEVELOPMENT BUILD " CFE_PSP_IMPL_VERSION /* Codename for current development */ \
61+
", Last Official Release: psp v1.4.0" /* For full support please use this version */
6262

6363
#endif /* _psp_version_ */

0 commit comments

Comments
 (0)