def get_all_tags()

in scripts/changelog.py [0:0]


def get_all_tags():
    lines = git_exec(["tag", "-l"])
    versions = map(parse_version, lines.splitlines())
    return sorted(versions)