Appearance
Channels and switching
Choose a channel
| Channel | Represents | Good fit |
|---|---|---|
| Stable | Named immutable release | Production and repeatable builds |
| Nightly | Rolling published snapshot | Recent integrated work |
| Canary | Latest build from main | Newest fixes and experiments |
| Commit | Exact source revision | Reproduction and bisecting |
Rolling channels move. Record the exact resolved version when a result must remain reproducible.
Install a runtime
Interactive:
sh
wago version installExplicit:
sh
wago version install --latest --use --no-input
wago version install --nightly --use --no-input
wago version install --canary --use --no-input
wago version install --version <commit> --use --no-inputUse --no-use when the new installation should not become active.
Switch runtimes
sh
wago version list
wago version switch
wago version switch canary
wago version switch v0.1.0If the requested runtime is missing, switch installs it first.
Inspect the exact selection:
sh
wago version current
wago version which
wago statusRecover a known-good version
sh
wago version switch v0.1.0
wago statusThe project and modules stay in place. Only the selected runtime changes.
