From 61f22fcfd4096052423ea10eaf002ea4928291cf Mon Sep 17 00:00:00 2001 From: Sami Ahmed Date: Thu, 19 Mar 2026 14:52:44 -0700 Subject: [PATCH] Fix display version string to match 5.3.2 DISPLAY_VERSION_REVISION in version.h was still set to 1, causing the internal version string to show v5.3.1.0 instead of v5.3.2.0. Co-Authored-By: Claude Opus 4.6 --- src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h b/src/version.h index c3995a6..333e881 100644 --- a/src/version.h +++ b/src/version.h @@ -53,7 +53,7 @@ static const int MEMPOOL_GD_VERSION = 60002; #define DISPLAY_VERSION_MAJOR 5 #define DISPLAY_VERSION_MINOR 3 -#define DISPLAY_VERSION_REVISION 1 +#define DISPLAY_VERSION_REVISION 2 #define DISPLAY_VERSION_BUILD 0 #endif