What changed, and why it matters
This commit only adds a changelog entry and bumps the firmware version number from 2.5.0 to 3.0.0. It contains no actual code changes, bug fixes, or security patches. The changelog mentions vague 'security policy' and 'forgot passcode' improvements, but the commit itself does not implement them.
No action needed for this commit alone. Review the actual implementation commits that correspond to the changelog's 'Enhanced security policies' and 'Improved Forgot Passcode flow' entries if they are not already audited.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies three files: CHANGELOG.md, CHANGELOG-ZH.md, and src/config/version.h. The version macros SOFTWARE_VERSION_MAJOR and SOFTWARE_VERSION_MINOR are updated (major 12→13, minor 5→0), which corresponds to the public-facing 3.0.0 release. No functional source code is changed. Any security improvements referenced in the changelog are not present in this commit.
Changed components
Inspect captured patch +58 / −2
diff --git a/CHANGELOG-ZH.md b/CHANGELOG-ZH.md
index 9c2b00f..39a7397 100644
--- a/CHANGELOG-ZH.md
+++ b/CHANGELOG-ZH.md
@@ -1,3 +1,33 @@
+
+## 3.0.0 (2026-7-20)
+
+**Web3:**
+
+### 优化
+
+1. 忘记密码及密码强度判断优化;
+2. 安全策略优化
+3. AR 相关计算逻辑优化
+
+
+**Cypherpunk:**
+
+### 新增
+
+1. 忘记密码及密码强度判断优化;
+2. 安全策略优化
+
+
+**BTC Only:**
+
+### 新增
+
+1. 忘记密码及密码强度判断优化;
+2. 安全策略优化
+
+
+
+
## 2.5.0(2026-6-29)
**Web3:**
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 061eafd..673ff6a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,29 @@
+## 3.0.0 (2026-07-20)
+
+**Web3:**
+
+### Improvements
+
+1. Improved the "Forgot Passcode" flow and passcode strength validation
+2. Enhanced security policies
+3. Optimized AR-related calculation logic
+
+**Cypherpunk:**
+
+### Improvements
+
+1. Improved the "Forgot Passcode" flow and passcode strength validation
+2. Enhanced security policies
+
+**BTC Only:**
+
+### Improvements
+
+1. Improved the "Forgot Passcode" flow and passcode strength validation
+2. Enhanced security policies
+
+
+
## 2.5.0(2026-6-29)
**Web3:**
diff --git a/src/config/version.h b/src/config/version.h
index 8e122b0..16cf821 100644
--- a/src/config/version.h
+++ b/src/config/version.h
@@ -4,9 +4,9 @@
#define SD_CARD_OTA_BIN_PATH "0:/keystone3.bin"
#define SOFTWARE_VERSION_MAX_LEN (32)
-#define SOFTWARE_VERSION_MAJOR 12
+#define SOFTWARE_VERSION_MAJOR 13
#define SOFTWARE_VERSION_MAJOR_OFFSET 10
-#define SOFTWARE_VERSION_MINOR 5
+#define SOFTWARE_VERSION_MINOR 0
#define SOFTWARE_VERSION_BUILD 0
#define SOFTWARE_VERSION_BETA 1
#define SOFTWARE_VERSION (SOFTWARE_VERSION_MAJOR * 10000 + SOFTWARE_VERSION_MINOR * 100 + SOFTWARE_VERSION_BUILD)
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.