diff --git a/ChangeLog b/ChangeLog index 676715bd..3a7527ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2022-12-28 Richard Frith-Macdonald + + * ANNOUNCE: + * NEWS: + * RELEASENOTES: + * Documentation/news.texi: + * Documentation/releasenotes.texi: + Update announcement and release notes for 2.9.1. + * Version: Bump version to 2.9.1. + 2022-12-05 Richard Frith-Macdonald * TestFramework/gnustep-tests.in: use the -a option to force grep diff --git a/Documentation/news.texi b/Documentation/news.texi index 51aae1d2..531ec834 100644 --- a/Documentation/news.texi +++ b/Documentation/news.texi @@ -9,6 +9,18 @@ The currently released version is @samp{@value{GNUSTEP-MAKE-VERSION}}. @end ifclear +@section Changes in version @samp{2.9.1} + +@itemize + +@item Add workaround for Clang bug on Windows MSVC when tests contain no Objective-C constructs. + +@item Various fixes for minor issues introduced in the test framework by parallelisation mof testcase execution. + +@end itemize + +@ifclear ANNOUNCE-ONLY + @section Changes in version @samp{2.9.0} @itemize @@ -38,8 +50,6 @@ Gorm. @end itemize -@ifclear ANNOUNCE-ONLY - @section Changes in version @samp{2.8.0} @itemize diff --git a/Documentation/releasenotes.texi b/Documentation/releasenotes.texi index 93e7f239..d6ab2af1 100644 --- a/Documentation/releasenotes.texi +++ b/Documentation/releasenotes.texi @@ -4,6 +4,16 @@ The release notes include descriptions of API changes, behavior changes and other information that might help developers and users migrate to using a newer version of the make system. +@section Version 2.9.1 + +Test framework has workaround for clang issues when building with MSCV. + +A few minor test framework issues inroduced by the parallelisation rewrite are fixed. + +A bug in the PASS_MATCH macro is fixed. + +The test framework makefiles now automatically add the framework header directory to the compiler flags, so testcases can be more reliably built by invoking make directly (rather than via the gnustep-tests script). + @section Version 2.9.0 We have improved support for newer GCC versions (GCC9 and newer). diff --git a/Version b/Version index 7494f434..42544f79 100644 --- a/Version +++ b/Version @@ -4,6 +4,6 @@ # The version number of this release. GNUSTEP_MAKE_MAJOR_VERSION=2 GNUSTEP_MAKE_MINOR_VERSION=9 -GNUSTEP_MAKE_SUBMINOR_VERSION=0 +GNUSTEP_MAKE_SUBMINOR_VERSION=1 GNUSTEP_MAKE_VERSION=${GNUSTEP_MAKE_MAJOR_VERSION}.${GNUSTEP_MAKE_MINOR_VERSION}.${GNUSTEP_MAKE_SUBMINOR_VERSION}