release: prepare OpenNexus 0.5.2-alpha1

This commit is contained in:
OpenNexus Release Bot
2026-09-18 20:41:21 +08:00
parent 32bc2ddccb
commit 5c3cb8003c
51 changed files with 590 additions and 9327 deletions
+16 -1
View File
@@ -13,7 +13,22 @@ LINK = re.compile(r"(?<!!)\[[^\]]*\]\(([^)]+)\)")
def main() -> int:
failures: list[str] = []
for document in ROOT.rglob("*.md"):
if any(part in {".build", ".venv", "node_modules", "target"} for part in document.parts):
if any(
part
in {
".build",
".local-plans",
".pnpm-store",
".qa-pytest-tmp",
".qa-uv-cache",
".venv",
".venv-models",
".venv-models-cuda",
"node_modules",
"target",
}
for part in document.parts
):
continue
source = document.read_text(encoding="utf-8")
for raw in LINK.findall(source):