What changed, and why it matters
This commit only increases version numbers (patch levels) for four Trezor firmware components: the bootloader, production test tool, security monitor, and Bluetooth Low Energy module. There are no code logic changes, bug fixes, or security-related modifications in the diff itself.
No security action needed for this commit in isolation. Treat as a routine versioning change. If investigating a security issue, review adjacent commits that prompted the version bump rather than this version-bump commit itself.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff increments VERSION_PATCH or PATCHLEVEL constants in four version header/files. No functional code is altered. The commit message labels this as a routine ‘chore: bump versions’ and explicitly includes ‘[no changelog]’, indicating no user-visible or security-relevant changes are being recorded.
Changed components
core/embed/projects/bootloader/version.hcore/embed/projects/prodtest/version.hcore/embed/projects/secmon/version.hnordic/trezor/trezor-ble/VERSIONInspect captured patch +4 / −4
diff --git a/core/embed/projects/bootloader/version.h b/core/embed/projects/bootloader/version.h
index a46c62ef..73ff32ec 100644
--- a/core/embed/projects/bootloader/version.h
+++ b/core/embed/projects/bootloader/version.h
@@ -4,7 +4,7 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 1
-#define VERSION_PATCH 12
+#define VERSION_PATCH 13
#define VERSION_BUILD 0
#define VERSION_UINT32 \
(VERSION_MAJOR | (VERSION_MINOR << 8) | (VERSION_PATCH << 16) | \
diff --git a/core/embed/projects/prodtest/version.h b/core/embed/projects/prodtest/version.h
index f635552f..01a88fcd 100644
--- a/core/embed/projects/prodtest/version.h
+++ b/core/embed/projects/prodtest/version.h
@@ -4,7 +4,7 @@
#define VERSION_MAJOR 0
#define VERSION_MINOR 3
-#define VERSION_PATCH 2
+#define VERSION_PATCH 3
#define VERSION_BUILD 0
#define FIX_VERSION_MAJOR 0
diff --git a/core/embed/projects/secmon/version.h b/core/embed/projects/secmon/version.h
index 0aea1c74..be7f2321 100644
--- a/core/embed/projects/secmon/version.h
+++ b/core/embed/projects/secmon/version.h
@@ -1,4 +1,4 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 0
-#define VERSION_PATCH 0
+#define VERSION_PATCH 1
#define VERSION_BUILD 0
diff --git a/nordic/trezor/trezor-ble/VERSION b/nordic/trezor/trezor-ble/VERSION
index 16a13732..9aaceb60 100644
--- a/nordic/trezor/trezor-ble/VERSION
+++ b/nordic/trezor/trezor-ble/VERSION
@@ -1,5 +1,5 @@
VERSION_MAJOR = 1
VERSION_MINOR = 0
-PATCHLEVEL = 0
+PATCHLEVEL = 1
VERSION_TWEAK = 0
EXTRAVERSION =
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.