What changed, and why it matters
This commit only changes a software version number in a header file, lowering the minor version from 12.5.0 to 12.4.9 and keeping the beta flag. There is no functional code change and no security relevance visible in the diff.
No security action needed; treat as routine release/version metadata change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch is a single-file version bump in src/config/version.h. It decrements SOFTWARE_VERSION_MINOR from 5 to 4 and sets SOFTWARE_VERSION_BUILD from 0 to 9, with SOFTWARE_VERSION_BETA remaining 1. No logic, interfaces, or security controls are modified.
Changed components
src/config/version.hInspect captured patch +2 / −2
diff --git a/src/config/version.h b/src/config/version.h
index 8e122b0..accf6ca 100644
--- a/src/config/version.h
+++ b/src/config/version.h
@@ -6,8 +6,8 @@
#define SOFTWARE_VERSION_MAX_LEN (32)
#define SOFTWARE_VERSION_MAJOR 12
#define SOFTWARE_VERSION_MAJOR_OFFSET 10
-#define SOFTWARE_VERSION_MINOR 5
-#define SOFTWARE_VERSION_BUILD 0
+#define SOFTWARE_VERSION_MINOR 4
+#define SOFTWARE_VERSION_BUILD 9
#define SOFTWARE_VERSION_BETA 1
#define SOFTWARE_VERSION (SOFTWARE_VERSION_MAJOR * 10000 + SOFTWARE_VERSION_MINOR * 100 + SOFTWARE_VERSION_BUILD)
#ifdef WEB3_VERSION
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.