#!/bin/bash
#
# output all versions in order
#

cd "`dirname \"$0\"`"

git tag | grep -E '^v[0-9]+\.[0-9]+$' | sort --version-sort

