Skip to content

Channels and switching

Choose a channel

ChannelRepresentsGood fit
StableNamed immutable releaseProduction and repeatable builds
NightlyRolling published snapshotRecent integrated work
CanaryLatest build from mainNewest fixes and experiments
CommitExact source revisionReproduction and bisecting

Rolling channels move. Record the exact resolved version when a result must remain reproducible.

Install a runtime

Interactive:

sh
wago version install

Explicit:

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-input

Use --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.0

If the requested runtime is missing, switch installs it first.

Inspect the exact selection:

sh
wago version current
wago version which
wago status

Recover a known-good version

sh
wago version switch v0.1.0
wago status

The project and modules stay in place. Only the selected runtime changes.

Next

Released under the Apache 2.0 License.