From 559c5a53c27c27263637429bfed5afbae1a8ffad Mon Sep 17 00:00:00 2001 From: Protocol Zero <257158451+Protocol-zero-0@users.noreply.github.com> Date: Thu, 14 May 2026 03:20:12 +0000 Subject: [PATCH] chore: release v1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps version 0.3.0 → 1.0.0 and updates the status badge to v1.0 following the Phase 4 work (PR #19 firejail sandbox, PR #20 HTTP evidence source). The kernel now has: - A process-level sandbox that stops the executor from writing outside its assigned worktree (firejail backed by OS-level read-only mount, verified end-to-end on CI). - An HTTP evidence source so the observer can pull live state from deployed services into observation.json alongside file and shell sources. Together with the v0.2 multi-round LLM loop, k-branch parallel exploration, goal evaluator, and full ledger audit chain, this crosses the bar for "灵魂插件": a kernel you can point at any git repository and trust to evolve it unattended. 99 tests · CI green on Python 3.10 + 3.12 · single dependency (PyYAML) preserved. Co-Authored-By: Claude Opus 4.7 --- README.md | 2 +- README.zh.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e6fe639..99fde06 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ tests - v0.3 + v1.0 Python ≥ 3.10 MIT Single dependency diff --git a/README.zh.md b/README.zh.md index bb7ef12..c8b78b1 100644 --- a/README.zh.md +++ b/README.zh.md @@ -19,7 +19,7 @@ tests - v0.3 + v1.0 Python ≥ 3.10 MIT 仅依赖 PyYAML diff --git a/pyproject.toml b/pyproject.toml index 38b3ce9..b860915 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "evolution-kernel" -version = "0.3.0" +version = "1.0.0" description = "A minimal autonomous evolution kernel with isolated planner, executor, evaluator roles." readme = "README.md" requires-python = ">=3.10"