diff --git a/CHANGES b/CHANGES index 55ebf9fe..bd2d222d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +2.3.4 | 2022-11-02 08:20:10 -0700 + + * Release 2.3.4. + + * Fix messaging between clone and proxy (Dominik Charousset, Corelight) + 2.3.3-1 | 2022-10-06 11:48:12 -0700 * Performance improvements (Dominik Charousset, Corelight) diff --git a/NEWS b/NEWS index 27b9d39d..6f74dff7 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +Broker 2.3.4 +============ + +- Fix a performance bottleneck in Broker-internal caching. + +- Improve performance with the ``stealing`` scheduler policy. + +- Fix messaging between clones and proxies that was resulting in an error + message being reported. + Broker 2.3.3 ============ diff --git a/VERSION b/VERSION index 408b4ee5..3f684d2d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3.3-1 +2.3.4 diff --git a/include/broker/version.hh b/include/broker/version.hh index b1e2415f..a1c57666 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 = 3; -constexpr type patch = 3; -constexpr auto suffix = "-1"; +constexpr type patch = 4; +constexpr auto suffix = ""; constexpr type protocol = 2;