#!/usr/bin/env bash
# Summary: Display the version
#
# Displays the version number of this release

set -e
[ -n "$GOENV_DEBUG" ] && set -x

version="2.0.0beta5"

echo "goenv ${version}"
