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;