diff --git a/CHANGES.adoc b/CHANGES.adoc index 6691960..2a39252 100644 --- a/CHANGES.adoc +++ b/CHANGES.adoc @@ -3,6 +3,17 @@ This document describes the relevant changes between releases of the `uhc` command line tool. +== 0.1.14 Jun 20 2019. + +- Added the `config get` and `config set` commands to get and set configuration + settings. + +- Added support for shortcuts to the raw HTTP commands. + +- Added the `whoami` command. + +- Added support for custom columns in the `cluster list` command. + == 0.1.13 Jun 12 2019. - Added the `cluster login` command. diff --git a/Gopkg.lock b/Gopkg.lock index b9673e1..093359a 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -41,6 +41,14 @@ revision = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75" version = "v1.0" +[[projects]] + digest = "1:ff5ebae34cfbf047d505ee150de27e60570e8c394b3b8fdbb720ff6ac71985fc" + name = "github.com/matttproud/golang_protobuf_extensions" + packages = ["pbutil"] + pruneopts = "UT" + revision = "c12348ce28de40eed0136aa2b644d0ee0650e56c" + version = "v1.0.1" + [[projects]] digest = "1:fe167e8f858cbfc10c721f2000f2446140800bb53fa83c088e03d191275611a4" name = "github.com/onsi/gomega" @@ -62,15 +70,7 @@ revision = "v1.5.0" [[projects]] - digest = "1:ff5ebae34cfbf047d505ee150de27e60570e8c394b3b8fdbb720ff6ac71985fc" - name = "github.com/matttproud/golang_protobuf_extensions" - packages = ["pbutil"] - pruneopts = "UT" - revision = "c12348ce28de40eed0136aa2b644d0ee0650e56c" - version = "v1.0.1" - -[[projects]] - digest = "1:f9dfea0963c5e7540ac57eae80232bd7aaf5ffb5e999730f37822f755946d597" + digest = "1:551ee2de0490b3d14cf217a5db6164b223913e8935acd3e4261cca08bd8ff51b" name = "github.com/openshift-online/uhc-sdk-go" packages = [ "pkg/client", @@ -83,8 +83,8 @@ "pkg/client/internal", ] pruneopts = "UT" - revision = "37573992120af5ba25126ff4c4991e56690eec62" - version = "v0.1.14" + revision = "03e448edf5505c67bac1fd7725db2fca6ee87be8" + version = "v0.1.17" [[projects]] digest = "1:641a6f02ac68db91eee65eed28a23630b215aea79e39b3dbcfa0fdbb19cd11de" diff --git a/Gopkg.toml b/Gopkg.toml index 484a6ed..91d94de 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -4,7 +4,7 @@ [[constraint]] name = "github.com/openshift-online/uhc-sdk-go" - version = "0.1.14" + version = "0.1.17" [[constraint]] name = "github.com/spf13/pflag" @@ -16,4 +16,4 @@ [[constraint]] name = "github.com/onsi/gomega" - revision = "v1.5.0" \ No newline at end of file + revision = "v1.5.0" diff --git a/pkg/info/info.go b/pkg/info/info.go index 8e7f45b..a5b5f30 100644 --- a/pkg/info/info.go +++ b/pkg/info/info.go @@ -18,4 +18,4 @@ limitations under the License. package info -const Version = "0.1.13" +const Version = "0.1.14"