From 54e89e8364095a001345217a8925567d8399bae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sat, 1 Jan 2022 23:50:02 +0100 Subject: [PATCH] Update release notes to account for recent changes --- docs/release-notes.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index ad424c50..85377e97 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -175,6 +175,15 @@ new design. * Test identity includes test's name, test's tags and and test's class name if applicable. * Added new warning, `UnmatchedTestSpec`, to error on test specs with no matching tests * The `-w`, `--warn` warning flags can now be provided multiple times to enable multiple warnings +* The case-insensitive handling of tags is now more reliable and takes up less memory +* Test case and assertion counting can no longer reasonably overflow on 32 bit systems + * The count is now kept in `uint64_t` on all platforms, instead of using `size_t` type. +* The `-o`, `--out` output destination specifiers recognize `-` as stdout + * You have to provide it as `--out=-` to avoid CLI error about missing option + * The new reporter specification also recognizes `-` as stdout +* Multiple reporters can now run at the same time and write to different files (#1712, #2183) + * To support this, the `-r`, `--reporter` flag now also accepts optional output destination + * For full overview of the semantics of using multiple reporters, look into the reporter documentation ### Fixes