#!/usr/bin/env bash
#MISE description="Compute next version from conventional commits"
set -euo pipefail

git cliff --bumped-version 2>/dev/null || echo "v0.1.0"
