What changed, and why it matters
This commit only bumps the app version number from 2.4.5 to 2.4.6 and updates the changelog. It does not change any source code, cryptographic logic, or security behavior. The changelog mentions that a prior release fixed a miniscript policy issue, but this commit itself is purely administrative packaging.
No action needed for this commit. Review the actual code changes referenced in the changelog (e.g., the miniscript `older(n)` fix and SDK migration) separately if they have not already been audited.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies two files: CHANGELOG.md and Makefile. The Makefile change increments APPVERSION_P from 5 to 6. The CHANGELOG adds release notes for version 2.4.6, describing prior fixes and changes (wording updates, disabling registration of certain miniscript wallet policies with non-consensus older(n) fragments, SDK modernization). No executable code is changed in this commit.
Changed components
Inspect captured patch +12 / −1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 844a594..4bae8e6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Dates are in `dd-mm-yyyy` format.
+## [2.4.6] - 30-03-2026
+
+### Changed
+
+- Small updates for on-screen wording.
+
+### Fixed
+
+- Disable registering miniscript wallet policies containing `older(n)` fragments where `n` has no consensus meaning.
+- Various bug fixes and code modernizations; adopted lib_standard_app from the SDK.
+
## [2.4.5] - 10-02-2026
### Changed
diff --git a/Makefile b/Makefile
index cb447ab..397ffc3 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ include $(BOLOS_SDK)/Makefile.target
# Application version
APPVERSION_M = 2
APPVERSION_N = 4
-APPVERSION_P = 5
+APPVERSION_P = 6
APPVERSION_SUFFIX = # if not empty, appended at the end. Do not add a dash.
ifeq ($(APPVERSION_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.