What changed, and why it matters
This commit only adds a new version entry to the changelog files and bumps the firmware version number from 2.2.20 to 2.3.0. It does not change any executable code, cryptographic logic, or security-sensitive behavior. There is no security issue in this commit itself.
No security action needed for this commit. Review the actual code changes that correspond to the 2.3.0 release notes separately if assessing the security of the release.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff is limited to CHANGELOG-ZH.md, CHANGELOG.md, and src/config/version.h. It adds release notes for version 2.3.0 and updates SOFTWARE_VERSION_MINOR from 2 to 3 and SOFTWARE_VERSION_BUILD from 20 to 0. No functional source code is modified.
Changed components
CHANGELOG-ZH.mdCHANGELOG.mdsrc/config/version.hInspect captured patch +66 / −2
diff --git a/CHANGELOG-ZH.md b/CHANGELOG-ZH.md
index 92d7aed..571701d 100644
--- a/CHANGELOG-ZH.md
+++ b/CHANGELOG-ZH.md
@@ -1,3 +1,36 @@
+## 2.3.0(2025-12-02)
+
+**Web3:**
+### 新增
+1. 支持通过 BlueWallet 管理 BTC Taproot 地址
+### 优化
+1. 优化固件代码,增强整体稳健性
+2. 优化 BTC Sign Message 流程
+3. 优化 SOL Squads 多签交易解析
+### Bug Fixes
+1. 修复 Passphrase 钱包下 Eternl 地址 path 类型同步问题
+
+
+**BTC-ONLY:**
+### 新增
+1. 支持通过 BlueWallet 管理 BTC Taproot 地址
+### 优化
+1. 优化固件代码,增强整体稳健性
+2. 优化 BTC Sign Message 流程
+
+
+
+**CYPHERPUNK:**
+### 新增
+1. 支持通过 BlueWallet 管理 BTC Taproot 地址
+### 优化
+1. 优化固件代码,增强整体稳健性
+2. 优化 BTC Sign Message 流程
+
+
+
+
+
## 2.2.20 (2025-11-10)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a4e4067..6809282 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,34 @@
+## 2.3.0(2025-12-02)
+
+
+
+**Web3:**
+### What's new
+1. Support managing BTC Taproot addresses via BlueWallet
+### Improvements
+1. Optimized firmware code, enhancing overall stability
+2. Optimized BTC Sign Message workflow
+3. Optimized SOL Squads multisig transaction parsing
+### Bug Fixes
+1. Fixed address path type synchronization issue for Eternl under Passphrase wallets
+
+
+**BTC-ONLY:**
+### What's new
+1. Support managing BTC Taproot addresses via BlueWallet
+### Improvements
+1. Optimized firmware code to enhance overall robustness
+2. Optimized BTC Sign Message workflow
+
+
+**CYPHERPUNK:**
+### What's new
+1. Support managing BTC Taproot addresses via BlueWallet
+### Improvements
+1. Optimized firmware code to enhance overall robustness
+2. Optimized BTC Sign Message workflow
+
+
## 2.2.20 (2025-11-10)
diff --git a/src/config/version.h b/src/config/version.h
index b557bc8..3d87d8a 100644
--- a/src/config/version.h
+++ b/src/config/version.h
@@ -6,8 +6,8 @@
#define SOFTWARE_VERSION_MAX_LEN (32)
#define SOFTWARE_VERSION_MAJOR 12
#define SOFTWARE_VERSION_MAJOR_OFFSET 10
-#define SOFTWARE_VERSION_MINOR 2
-#define SOFTWARE_VERSION_BUILD 20
+#define SOFTWARE_VERSION_MINOR 3
+#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
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.