.PHONY: bump docs

## bump VERSION=x.y.z — update __init__.py, zensical.toml, and docs/installation.md
bump:
	@test -n "$(VERSION)" || { echo "Usage: make bump VERSION=x.y.z"; exit 1; }
	uv run python scripts/inject_version.py $(VERSION)

## docs — build the documentation site locally
docs:
	uv run zensical build
