v0.2.5 declares IO.Process. v0.2.4 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/bastion.march:22
19mod Bastion do
20 needs IO.FileRead
21 needs IO.FileWrite
22 needs IO.Process
23
24 needs IO.Console
25
lib/security/session.march:43
40-- conn |> Session.commit(secret_key_base)
41
42mod Bastion.Session do
43 needs IO.Process
44
45 needs IO.Random
46
lib/http/bastion_server.march:11
8-- end
9
10mod BastionServer do
11 needs IO.Process
12
13 needs IO.Console
14 needs IO.NetListen
lib/forge/build_islands.march:26
23mod Forge.BuildIslands do
24 needs IO.FileRead
25 needs IO.FileWrite
26 needs IO.Process
27
28 needs IO.Console
29
lib/forge/lower.march:21
18mod Forge.Lower do
19 needs IO.FileRead
20 needs IO.FileWrite
21 needs IO.Process
22
23 needs IO.Console
24