From 6b2d0e5d6b548ce3714ada5b6ca1b22de62f39a7 Mon Sep 17 00:00:00 2001 From: Aaron Molitor Date: Fri, 8 Apr 2022 23:03:42 -0500 Subject: [PATCH] update version to 7.2.0 -- protocol version --- flow/ProtocolVersion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/ProtocolVersion.h b/flow/ProtocolVersion.h index d1c7e0503b..78e375269b 100644 --- a/flow/ProtocolVersion.h +++ b/flow/ProtocolVersion.h @@ -35,7 +35,7 @@ constexpr uint64_t currentProtocolVersionValue = 0x0FDB00B072000000LL; // The first protocol version that cannot be downgraded from. Ordinarily, this will be two release versions larger // than the current version, meaning that we only support downgrades between consecutive release versions. -constexpr uint64_t minInvalidProtocolVersionValue = 0x0FDB00B073000000LL; +constexpr uint64_t minInvalidProtocolVersionValue = 0x0FDB00B074000000LL; #define PROTOCOL_VERSION_FEATURE(v, x) \ static_assert((v & 0xF0FFFFLL) == 0 || v < 0x0FDB00B071000000LL, "Unexpected feature protocol version"); \