Changelog
The full changelog lives at CHANGELOG.md in the repository root, kept in Keep a Changelog format.
Releases
For installable artifacts (Linux x86_64 + aarch64 binaries with SHA256 checksums), see the Releases page.
To install a release, follow the steps in Installing from Releases.
Release process
Releases are tagged manually by maintainers and built by the
release.yml
workflow, which:
- Triggers on
git pushof any tag matchingv*. - Builds release binaries for
x86_64-unknown-linux-gnuandaarch64-unknown-linux-gnuin a matrix of native runners. - Strips and tars each binary along with the vendored network presets and operator scripts.
- Computes per-archive
sha256sumand aggregates them intoSHA256SUMS.txt. - Generates release notes from the commit log between the previous tag and this one.
- Publishes a GitHub Release with the archives, sidecar checksums, and the aggregated
SHA256SUMS.txt.
Pre-release tags (-rc, -beta, -alpha) are flagged as pre-releases on GitHub and skipped by the install script’s latest resolver.
Cutting a release (maintainer reference)
$ git checkout main
$ git pull --ff-only
# Confirm CHANGELOG.md [Unreleased] section is up to date and dated.
$ git tag -a v0.2.0 -m "Yggdrasil v0.2.0"
$ git push origin v0.2.0
The workflow takes 20–40 minutes for the matrix build. Watch its progress in the Actions tab.