What changed, and why it matters
This commit simply updates three version strings from the stable release '25.09.0' to the beta release '25.10.beta0' in documentation configuration, Python package metadata, and source code. There are no code behavior changes, no bug fixes, and no security-related modifications.
No security action needed. Treat as a routine version-bump commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff changes only the VERSION string in three files: mkdocs.yml (documentation site variable), pyproject.toml (Poetry package version), and src/krux/metadata.py (runtime firmware version constant). No functional code, dependencies, cryptography, or build logic is modified.
Changed components
mkdocs.ymlpyproject.tomlsrc/krux/metadata.pyInspect captured patch +3 / −3
diff --git a/mkdocs.yml b/mkdocs.yml
index a7afd2f..f6583ad 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.09.0
+ latest_krux: krux-v25.10.beta0
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 be18000..48916f1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -22,7 +22,7 @@
[tool.poetry]
name = "krux"
-version = "25.09.0"
+version = "25.10.beta0"
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 f69656e..fed070e 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.09.0"
+VERSION = "25.10.beta0"
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.