bump version to 25.11.beta1 add WonderK to release script
What changed, and why it matters
This commit is a routine version bump from 25.11.beta0 to 25.11.beta1 and adds a new hardware device (WonderK) to the release build script. There are no security-relevant code changes.
No security action required. Treat as normal release housekeeping.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff updates three version strings (krux launcher script, mkdocs.yml, pyproject.toml, src/krux/metadata.py) and appends ‘maixpy_wonder_k’ to the devices array in the release build script. No functional firmware code, cryptography, input handling, or permissions are modified.
Changed components
release build script (krux)documentation configuration (mkdocs.yml)package metadata (pyproject.toml)runtime version metadata (src/krux/metadata.py)Inspect captured patch +4 / −4
diff --git a/krux b/krux
index 446b547..b982230 100755
--- a/krux
+++ b/krux
@@ -289,7 +289,7 @@ elif [ "$1" == "build-release" ]; then
cp -f ktool-win.exe ../$release_dir/ktool-win.exe
cd ..
- devices=("maixpy_m5stickv" "maixpy_amigo" "maixpy_dock" "maixpy_yahboom" "maixpy_cube" "maixpy_wonder_mv" "maixpy_tzt" "maixpy_embed_fire")
+ devices=("maixpy_m5stickv" "maixpy_amigo" "maixpy_dock" "maixpy_yahboom" "maixpy_cube" "maixpy_wonder_mv" "maixpy_tzt" "maixpy_embed_fire" "maixpy_wonder_k")
for device in ${devices[@]}; do
./krux build $device
mkdir -p $release_dir/$device
diff --git a/mkdocs.yml b/mkdocs.yml
index 23d4d8a..51575a7 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -52,7 +52,7 @@ edit_uri: edit/main/docs
docs_dir: docs
site_dir: public
extra:
- latest_krux: krux-v25.11.beta0
+ latest_krux: krux-v25.11.beta1
latest_installer: v0.0.20
latest_installer_rpm: krux-installer-0.0.20-1.x86_64.rpm
latest_installer_deb: krux-installer_0.0.20_amd64.deb
diff --git a/pyproject.toml b/pyproject.toml
index ae42002..ec335a7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -22,7 +22,7 @@
[tool.poetry]
name = "krux"
-version = "25.11.beta0"
+version = "25.11.beta1"
description = "Open-source signing device firmware for Bitcoin"
authors = ["Jeff S <jeffreesun@protonmail.com>"]
readme = "README.md"
diff --git a/src/krux/metadata.py b/src/krux/metadata.py
index 7a42dd9..afe21d5 100644
--- a/src/krux/metadata.py
+++ b/src/krux/metadata.py
@@ -19,5 +19,5 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
-VERSION = "25.11.beta0"
+VERSION = "25.11.beta1"
SIGNER_PUBKEY = "03339e883157e45891e61ca9df4cd3bb895ef32d475b8e793559ea10a36766689b"
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.