From a38f8e2410f4c0e4f94b6525a5c863e80ce90b2a Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Mon, 21 Nov 2022 16:43:16 -0700 Subject: [PATCH] Update CHANGES, VERSION, and NEWS for 2.4.1 release --- CHANGES | 9 +++++++++ NEWS | 8 ++++++++ VERSION | 2 +- include/broker/version.hh | 4 ++-- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index e84687eb..616b05ef 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,12 @@ +2.4.1 | 2022-11-21 16:43:16 -0700 + + * Add clangd .cache directory to gitignore (Tim Wojtulewicz, Corelight) + + * Windows CI: make Dockerfile a little more like one in Zeek (Tim Wojtulewicz, Corelight) + + - Install choco in a much less-verbose way + - Use choco to install VS build tools and git + 2.4.0-dev.98 | 2022-11-17 13:56:32 -0700 * Fix clang-tidy warnings (Dominik Charousset, Corelight) diff --git a/NEWS b/NEWS index 56b81bb8..3238c21a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,11 @@ +Broker 2.4.1 +============ + +- Fix Windows CI builds (Tim Wojtulewicz, Corelight) + +- Fix a potential stall in Broker’s internal data pipeline (Dominik Charousset, + Corelight) + Broker 2.4.0 ============ diff --git a/VERSION b/VERSION index 1464fa75..005119ba 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4.0-dev.98 +2.4.1 diff --git a/include/broker/version.hh b/include/broker/version.hh index 0135961c..63f3f10a 100644 --- a/include/broker/version.hh +++ b/include/broker/version.hh @@ -9,8 +9,8 @@ using type = unsigned; constexpr type major = 2; constexpr type minor = 4; -constexpr type patch = 0; -constexpr auto suffix = "-dev"; +constexpr type patch = 1; +constexpr auto suffix = ""; constexpr type protocol = 2;