What changed, and why it matters
This commit only changes two version numbers in a header file: the build number goes from 0 to 1, and the beta flag goes from 1 to 4. It does not modify any executable code, fix any behavior, or address any security issue. It is a routine release bookkeeping change.
No security action needed. Treat as a normal version-bump commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff is limited to src/config/version.h, updating SOFTWARE_VERSION_BUILD from 0 to 1 and SOFTWARE_VERSION_BETA from 1 to 4. No functional code, crypto, memory handling, parsing, or interface logic is touched. There is no patch-like behavior to evaluate for security relevance.
Changed components
src/config/version.hInspect captured patch +2 / −2
diff --git a/src/config/version.h b/src/config/version.h
index 8e122b0..a58b468 100644
--- a/src/config/version.h
+++ b/src/config/version.h
@@ -7,8 +7,8 @@
#define SOFTWARE_VERSION_MAJOR 12
#define SOFTWARE_VERSION_MAJOR_OFFSET 10
#define SOFTWARE_VERSION_MINOR 5
-#define SOFTWARE_VERSION_BUILD 0
-#define SOFTWARE_VERSION_BETA 1
+#define SOFTWARE_VERSION_BUILD 1
+#define SOFTWARE_VERSION_BETA 4
#define SOFTWARE_VERSION (SOFTWARE_VERSION_MAJOR * 10000 + SOFTWARE_VERSION_MINOR * 100 + SOFTWARE_VERSION_BUILD)
#ifdef WEB3_VERSION
#define SOFTWARE_VERSION_SUFFIX ""
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.