Skip to content

hexago version

Print HexaGo version information.

Synopsis

hexago version [flags]

Flags

Flag Short Type Default Description
--simple -s bool false Print only the version number (useful for scripting)

Output

Default (splash)

Running hexago version prints a banner with full build metadata:

┓┏      ┏┓    Version: 0.0.3
┣┫┏┓┓┏┏┓┃┓┏┓  Build: 2026-01-15T10:00:00Z
┛┗┗ ┛┗┗┻┗┛┗┛  Commit: abc1234

Simple (-s)

Prints only the bare version string — no newline decoration:

hexago version --simple
# → v0.0.3

Useful in CI scripts or Makefiles:

VERSION=$(hexago version --simple)
docker build -t myapp:$VERSION .

Examples

hexago version          # Full splash with build info
hexago version --simple # Version string only (e.g. v0.0.3)
hexago version -s       # Same, short flag