diff --git a/CHANGES.adoc b/CHANGES.adoc index 3f771c1cbc..7db509d484 100644 --- a/CHANGES.adoc +++ b/CHANGES.adoc @@ -2,3 +2,22 @@ This document describes the relevant changes between releases of the `moactl` command line tool. + +== 0.0.1 May 27 2020 + +Initial pre-release of moactl. Contains the following commands: + +- completion Generates bash completion scripts +- create Create a resource from stdin +- delete Delete a specific resource +- describe Show details of a specific resource +- edit Edit a specific resource +- help Help about any command +- init Applies templates to support Managed OpenShift on AWS clusters +- list List all resources of a specific type +- login Log in to your Red Hat account +- logout Log out +- logs Show logs of a specific resource +- verify Verify resources are configured correctly for cluster install +- version Prints the version of the tool + diff --git a/pkg/info/info.go b/pkg/info/info.go index 7f7090d3d9..0630de3f82 100644 --- a/pkg/info/info.go +++ b/pkg/info/info.go @@ -18,4 +18,4 @@ limitations under the License. package info -const Version = "0.0.0" +const Version = "0.0.1"