What changed, and why it matters
This commit only changes version numbers and release dates in build files and a changelog. It does not modify any code that handles secrets, cryptography, user input, or device behavior. There is no security issue here.
No security action needed. Treat as routine release-preparation housekeeping.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff updates VERSION_STRING, BOOTLOADER_VERSION, and RELEASE_VERSION from 5.4.5/1.3.5Q/3.2.1 to 5.5.0/1.4.0Q/3.3.0, and adjusts placeholder release dates in Next-ChangeLog.md. It also fixes a stale Makefile reference comment (MK4-Makefile → MK-Makefile). No functional code, bootloader logic, firmware, or cryptographic routines are changed.
Changed components
Inspect captured patch +7 / −7
diff --git a/releases/Next-ChangeLog.md b/releases/Next-ChangeLog.md
index b6b9d0d..86036ea 100644
--- a/releases/Next-ChangeLog.md
+++ b/releases/Next-ChangeLog.md
@@ -25,14 +25,14 @@ This lists the new changes that have not yet been published in a normal release.
# Mk Specific Changes
-## 5.4.5 - 2025-12-xx
+## 5.5.0 - 2065-03-xx
- Enhancement: Show QR of XOR-split seeds.
# Q Specific Changes
-## 1.3.6Q - 2025-12-xx
+## 1.4.0Q - 2065-03-xx
- Bugfix: Empty notes in hobbled mode caused yikes upon menu entry.
diff --git a/stm32/MK-Makefile b/stm32/MK-Makefile
index 1ae8915..068a512 100644
--- a/stm32/MK-Makefile
+++ b/stm32/MK-Makefile
@@ -12,14 +12,14 @@ HW_MODEL = mk
PARENT_MKFILE = MK-Makefile
# This is release of the bootloader that will be built into the factory.dfu
-BOOTLOADER_VERSION = 3.2.1
+BOOTLOADER_VERSION = 3.3.0
BOOTLOADER_DIR = mk4-bootloader
LATEST_RELEASE = $(shell ls -t1 ../releases/*-mk-*.dfu ../releases/*-mk4-*.dfu | head -1)
# Our version for this release.
# - caution, the bootrom will not accept version < 3.0.0
-VERSION_STRING = 5.4.5
+VERSION_STRING = 5.5.0
# keep near top, because defined default target (all)
include shared.mk
diff --git a/stm32/Q1-Makefile b/stm32/Q1-Makefile
index 04acac7..88da425 100644
--- a/stm32/Q1-Makefile
+++ b/stm32/Q1-Makefile
@@ -16,7 +16,7 @@ BOOTLOADER_DIR = q1-bootloader
LATEST_RELEASE = $(shell ls -t1 ../releases/*-q1-*.dfu | head -1)
# Our version for this release.
-VERSION_STRING = 1.3.5Q
+VERSION_STRING = 1.4.0Q
# Remove this closer to shipping.
#$(warning "Forcing debug build")
diff --git a/stm32/mk4-bootloader/version.h b/stm32/mk4-bootloader/version.h
index 0a49027..ac6b333 100644
--- a/stm32/mk4-bootloader/version.h
+++ b/stm32/mk4-bootloader/version.h
@@ -5,8 +5,8 @@
#include <stdint.h>
// Public version number for humans. Lots more version data added by Makefile.
-// - update ../MK4-Makefile BOOTLOADER_VERSION once this is qualified version
-#define RELEASE_VERSION "3.2.1"
+// - update ../MK-Makefile BOOTLOADER_VERSION once this is qualified version
+#define RELEASE_VERSION "3.3.0"
extern const char version_string[];
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.