From 04979a7fd37a5a34f3611a3c4222e95f2956afcd Mon Sep 17 00:00:00 2001 From: James Bonfield Date: Mon, 19 Aug 2024 15:18:48 +0100 Subject: [PATCH] Updated NEWS with changes so far (including this PR). Not strictly part of the same change, but it's all necessary prior to the next release and neither commit is a change of code. --- NEWS.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/NEWS.md b/NEWS.md index ab1c0db..9714ff0 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,32 @@ +Release 1.6.1: (upcoming) +------------------------- + +This release is primarily portability and minor bug fixes. + +Changes + +- Improve warning levels by the compiler in CI. (#125) + +- Switch to GitHub actions for some CI builds. (#121, #123) + +- Add configure check for cpuid systems. (#115, #116. Reported by + Ryan Carsten Schmidt) + +Bug fixes + +- Use unsigned chars for ctype macros in the name tokeniser. + On many systems this was already mitigated against, but on some OSes + a char > 128 could trigger a buffer underrun. (#124) + +- Fix interaction between _XOPEN_SOURCE and FreeBSD. + (#119, John Marshall) + +- Improve AVX512 compiler support, notably MacOS El Capitan's XCode. + (#118, Rob Davies) + +- Fix -std=c99 -pendantic pedantry (#117) + + Release 1.6.0: 7th December 2023 --------------------------------