Skip to content

Commit caedd24

Browse files
committed
Bump to v5.1.0-rc1+dev68 and update ReadMe
Small edit to REVISION version comment in osapi-version.h
1 parent e347d41 commit caedd24

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@ The autogenerated OSAL user's guide can be viewed at <https://github.com/nasa/cF
1010

1111
## Version History
1212

13+
### Development Build: 5.1.0-rc1+dev68
14+
15+
- When `OS_DEBUG` is enabled, this adds a message if mutex give/take actions occur outside the expected sequence. This informs the user (via the debug console) if a lock is taken more than once or if a lock is given by a different task than the one that originally took it:
16+
```
17+
OS_MutSemTake():216:WARNING: Task 65547 taking mutex 327685 while owned by task 65547
18+
```
19+
- Removes all FIXME comments
20+
- Resolves security/filename race issue by opening file and acting on descriptor by adding fstat stub
21+
- Squashed the minor recommended bugs
22+
- UtAssert macros now accept variable string arguments.The `UtAssert_True` wrapper around call is no longer needed to accommodate dynamic string output, thus removing the double assert. UtAssert macros will now be able to offer more information by themselves.
23+
- See <https://github.com/nasa/osal/pull/639>
24+
1325
### Development Build: 5.1.0-rc1+dev60
1426

1527
- Appliy standard formating, whitespace-only changes

src/os/inc/osapi-version.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@
3030
/*
3131
* Development Build Macro Definitions
3232
*/
33-
#define OS_BUILD_NUMBER 60
33+
#define OS_BUILD_NUMBER 67
3434
#define OS_BUILD_BASELINE "v5.1.0-rc1"
3535

3636
/*
3737
* Version Macro Definitions
3838
*/
3939
#define OS_MAJOR_VERSION 5 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
4040
#define OS_MINOR_VERSION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
41-
#define OS_REVISION \
42-
99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. If set to "99" it indicates a \
43-
development version. */
41+
#define OS_REVISION
42+
99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. A value of "99" an unreleased development
43+
version. */
4444
#define OS_MISSION_REV 0 /*!< @brief ONLY USED by MISSION Implementations. Mission revision */
4545

4646
/*
@@ -73,6 +73,6 @@ OSAL 4.1 is present.
7373

7474
#endif /* _osapi_version_h_ */
7575

76-
/************************/
77-
/* End of File Comment */
78-
/************************/
76+
/************************/
77+
/* End of File Comment */
78+
/************************/

0 commit comments

Comments
 (0)