From caed7f949394c364ea0d3f4aaa1ea71fa47762f5 Mon Sep 17 00:00:00 2001 From: SChernykh <15806605+SChernykh@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:44:09 +0200 Subject: [PATCH] Update version to 4.0.0 --- src/util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.h b/src/util.h index 12fd044..9341b0c 100644 --- a/src/util.h +++ b/src/util.h @@ -34,8 +34,8 @@ namespace p2pool { -#define P2POOL_VERSION_MAJOR 3 -#define P2POOL_VERSION_MINOR 10 +#define P2POOL_VERSION_MAJOR 4 +#define P2POOL_VERSION_MINOR 0 #define P2POOL_VERSION_PATCH 0 constexpr uint32_t P2POOL_VERSION = (P2POOL_VERSION_MAJOR << 16) | (P2POOL_VERSION_MINOR << 8) | P2POOL_VERSION_PATCH;