Releases & Downloads

All Stategraph releases are published on GitHub. Visit the releases page for the latest version.

CLI Installation

Homebrew (macOS)

The recommended way to install the Stategraph CLI on macOS:

brew tap stategraph/stategraph
brew install stategraph

To upgrade to the latest version:

brew upgrade stategraph

Docker Images

Docker images are hosted on GitHub Container Registry.

Server

The server image includes the API backend and web console.

docker pull ghcr.io/stategraph/stategraph-server:<version>

Use this image for: - Docker Compose deployments - Kubernetes deployments

CLI

The CLI image contains the stategraph command-line tool.

docker pull ghcr.io/stategraph/stategraph:<version>

See CLI documentation for usage.

Binary Downloads

Native binaries are available for direct download from the releases page.

Platform Architecture File
Linux x86_64 stategraph-linux-amd64.tar.gz
Linux ARM64 stategraph-linux-arm64.tar.gz
macOS Apple Silicon stategraph-macos-arm64.tar.gz
macOS Intel stategraph-macos-amd64.tar.gz

Installation

# Download and extract
tar xzf stategraph-<platform>.tar.gz

# Move to PATH
sudo mv stategraph /usr/local/bin/

# Verify
stategraph --help

Version Scheme

Stategraph follows semantic versioning:

  • Major (X.0.0) - Breaking changes
  • Minor (0.X.0) - New features, backwards compatible
  • Patch (0.0.X) - Bug fixes

Release Notes

See the GitHub releases page for detailed release notes and changelogs.