v0.1.5 declares IO.Process. v0.1.0 did not. Declaring is the event recorded here — whether the capability was newly exercised is a separate claim the registry cannot make.
Where it is declared
lib/debug_log.march:6Declared nothing in the previous version
3 needs IO.FileRead
4 needs IO.FileWrite
5 needs IO.Mut
6 needs IO.Process
7
8 -- debug_log.march — Lightweight append-only log for debugging scroll sessions.
9 --
lib/page.march:3Declared nothing in the previous version
1mod Page do
2
3 needs IO.Process
4
5 -- page.march — Server-side HTML shell for the notebook browser UI.
6 --
lib/runtime.march:39Declared nothing in the previous version
36 needs IO.FileRead
37 needs IO.FileWrite
38 needs IO.Mut
39 needs IO.Process
40
41import Shell
42-- BlobParser (lib/scroll/blob_parser.march) is part of this project and
lib/scroll.march:22Declared nothing in the previous version
19 needs IO.FileWrite
20 needs IO.Mut
21 needs IO.NetListen
22 needs IO.Process
23 needs IO.WebSocket
24
25-- ── Public API delegation wrappers ────────────────────────────────────────────
lib/session.march:6Declared nothing in the previous version
3 needs IO.FileRead
4 needs IO.FileWrite
5 needs IO.Mut
6 needs IO.Process
7 needs IO.WebSocket
8
9 -- session.march — WebSocket message handler and receive loop.