Skip to content

Releases: Wise-Est-Systems/wiseorder-protocol

v0.1.0-rc1 — first release candidate

Pre-release

Choose a tag to compare

@Wise-Est-Systems Wise-Est-Systems released this 25 May 15:59

First release candidate of the WiseOrder governance protocol. This is not the final v0.1.0 release; signing infrastructure (cosign keyless via GitHub Actions) is being wired up for v0.1.0 final.

What this candidate contains

  • Governance kernel + hash-chained audit memory + 3-language verifier parity (Python, Rust, Go).
  • 3 chain triples sealed, all verify as CHAIN_VALID.
  • 480 tests + 9 xfailed; CI green on 4 workflows × 4 matrix cells (ubuntu/macos × py3.11/py3.12).
  • Crash-safe apply_transition with 7 synthetic crash-injection tests + 3 real-process SIGKILL tests.
  • Conformance vectors for v0.1.0 (frozen) + v0.2.0 (not yet frozen).
  • Apache-2.0 LICENSE.
  • audit_bundle_v0.1/ — curated reviewer entry path with SHA-256 manifest (37 artifacts).

Verification path (≈ 5 minutes from a fresh clone)

```bash
git clone --branch v0.1.0-rc1 https://github.com/Wise-Est-Systems/wiseorder-protocol.git /tmp/check
cd /tmp/check
python3.12 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
make ci
make chain-verify
```

Expected: `CHAIN_VALID count=3 head=5964497c48c877946e2c92d15e3116f5991c1d8a4c99dc7eadb477cec558dd81`.

Known gaps (documented honestly)

  • WiseDigest-3 cryptanalysis: deferred (tracked in wop).
  • External validation status: `NOT_COMPLETE` (3-language verifiers are first-party tracks; a real third-party verifier per `docs/release/THIRD_PARTY_VERIFIER_BRIEF_v0.1.md` is open).
  • Branch protection: documented in `docs/BRANCH_PROTECTION.md`, not yet UI-enforced.
  • Tag signing: this rc is annotated-only; v0.1.0 final will be signed via cosign keyless.

Where to start as a reviewer

`cat audit_bundle_v0.1/INDEX.md` — 45-minute curated path covering architecture, invariants, failure model, threat model, reproducibility, CI, SIGKILL recovery, chain verification, cryptanalysis status.

What this is NOT

Not the final v0.1.0. Not externally validated. Not signed. Not branch-protection-enforced. The gaps are documented in `docs/ADOPTION_REALITY.md` and `docs/REVIEWER_GUIDE.md` "what should concern you".