v0.5.0
Zackriya-Solutions/meetilyv0.5.0Jun 26, 2026by Wirasm
AI Summary
Version 0.5.0 focuses on enhancing the installation experience by providing multiple methods for various platforms, including Docker and Homebrew support, alongside manual binaries for different architectures.
Key Highlights
- Added Docker support for running Archon workflows.
- Added Homebrew support for macOS and Linux.
- Provided manual installation binaries for macOS (Intel/Apple Silicon), Linux (x64/ARM64), and Windows.
New Features
- Docker installation method
- Homebrew installation method
- Manual binary installation for macOS (Apple Silicon and Intel)
- Manual binary installation for Linux (x64 and ARM64)
- Manual binary installation for Windows
Full Release Notes
## Installation ### Quick Install (Recommended) **macOS / Linux** ```bash curl -fsSL https://archon.diy/install | bash ``` **Windows (PowerShell)** ```powershell irm https://archon.diy/install.ps1 | iex ``` **Homebrew (macOS / Linux)** ```bash brew install coleam00/archon/archon ``` **Docker** ```bash docker run --rm -v "$PWD:/workspace" ghcr.io/coleam00/archon:latest workflow list ``` ### Manual Installation **macOS (Apple Silicon)** ```bash curl -fsSL https://github.com/coleam00/Archon/releases/latest/download/archon-darwin-arm64 -o /usr/local/bin/archon chmod +x /usr/local/bin/archon ``` **macOS (Intel)** ```bash curl -fsSL https://github.com/coleam00/Archon/releases/latest/download/archon-darwin-x64 -o /usr/local/bin/archon chmod +x /usr/local/bin/archon ``` **Linux (x64)** ```bash curl -fsSL https://github.com/coleam00/Archon/releases/latest/download/archon-linux-x64 -o /usr/local/bin/archon chmod +x /usr/local/bin/archon ``` **Linux (ARM64)** ```bash curl -fsSL https://github.com/coleam00/Archon/releases/latest/download/archon-linux-arm64 -o /usr/local/bin/archon chmod +x /usr/local/bin/archon ``` **Windows (Manual)** Download `archon-windows-x64.exe` from the assets below, rename to `archon.exe`, and add to your PATH. ### Verify installation ```bash archon version ``` ## What's Changed * Release 0.5.0 by @Wirasm in https://github.com/coleam00/Archon/pull/2042 **Full Changelog**: https://github.com/coleam00/Archon/compare/v0.4.1...v0.5.0