diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html index f00cabdcf..c16a3fd91 100644 --- a/documentation/RELEASE_NOTES.html +++ b/documentation/RELEASE_NOTES.html @@ -13,6 +13,25 @@ +
The case-independent string comparison functions epicsStrCaseCmp() and +epicsStrnCaseCmp() were returning incorrect results when the strings did not +match; if the left-hand string is a shorter sub-set of the right-hand one the +result should be -1. These functions now match their BSD equivalents.
+ +The win32-x86 and windows-x64 host target architectures can now cross-build +the associated -static target, i.e. win32-x86-static or windows-x64-static +(these targets can also be used as regular host architectures). Users could +always have added configuration files themselves to build these, but we needed +them for continuous integration testing of static builds.
+ +The problem building for the ios-x86 simulator target architecture has been +resolved.