#!/bin/bash

set -e
cd "$(dirname "$0")/.."

main() {
    run bumpversion minor
}

run() {
    echo "\$ $*"
    "$@"
}

main
