From 93f8b2ca47b3659ba80b7bcf78c361597c091799 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Mon, 4 Mar 2024 13:03:27 -0700 Subject: [PATCH] Updating CHANGES and VERSION. --- CHANGES | 4 ++++ VERSION | 2 +- include/broker/version.hh | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index ef437b87..a1e49d1a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +6.2.0 | 2024-02-20 09:15:34 -0700 + + * Release Zeek 6.2.0. + 2.8.0-dev.41 | 2024-02-20 09:15:14 -0700 * Remove obsolete code (Dominik Charousset, Corelight) diff --git a/VERSION b/VERSION index 0670cbdf..6abaeb2f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.8.0-dev.41 +6.2.0 diff --git a/include/broker/version.hh b/include/broker/version.hh index ccf44770..5a109bc9 100644 --- a/include/broker/version.hh +++ b/include/broker/version.hh @@ -7,10 +7,10 @@ namespace broker::version { /// The type used for version numbers. using type = unsigned; -constexpr type major = 2; -constexpr type minor = 8; +constexpr type major = 6; +constexpr type minor = 2; constexpr type patch = 0; -constexpr auto suffix = "-dev"; +constexpr auto suffix = ""; constexpr type protocol = 2;