What changed, and why it matters
This commit only changes the firmware version numbers in a header file (from 12.4.9 beta 2 to 12.5.0 beta 1). It does not modify any executable code, fix any bug, or change any security behavior. There is no security relevance visible in the diff.
No security action needed; treat as a routine version-bump commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff updates preprocessor macros in src/config/version.h: SOFTWARE_VERSION_MINOR from 4 to 5, SOFTWARE_VERSION_BUILD from 9 to 0, and SOFTWARE_VERSION_BETA from 2 to 1. The resulting SOFTWARE_VERSION macro changes from 120409 to 120500. No functional code paths are altered.
Changed components
src/config/version.hInspect captured patch +3 / −3
diff --git a/src/config/version.h b/src/config/version.h
index 4ee2990..8e122b0 100644
--- a/src/config/version.h
+++ b/src/config/version.h
@@ -6,9 +6,9 @@
#define SOFTWARE_VERSION_MAX_LEN (32)
#define SOFTWARE_VERSION_MAJOR 12
#define SOFTWARE_VERSION_MAJOR_OFFSET 10
-#define SOFTWARE_VERSION_MINOR 4
-#define SOFTWARE_VERSION_BUILD 9
-#define SOFTWARE_VERSION_BETA 2
+#define SOFTWARE_VERSION_MINOR 5
+#define SOFTWARE_VERSION_BUILD 0
+#define SOFTWARE_VERSION_BETA 1
#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.