diff --git a/.goreleaser.yml b/.goreleaser.yml
index d66b28ce..bd0bece3 100644
--- a/.goreleaser.yml
+++ b/.goreleaser.yml
@@ -23,7 +23,7 @@ builds:
flags:
- -trimpath
ldflags:
- - -s -w -X github.com/derailed/k9s/cmd.version={{.Version}} -X github.com/derailed/k9s/cmd.commit={{.Commit}} -X github.com/derailed/k9s/cmd.date={{.Date}}
+ - -s -w -X github.com/derailed/k9s/cmd.version=v{{.Version}} -X github.com/derailed/k9s/cmd.commit={{.Commit}} -X github.com/derailed/k9s/cmd.date={{.Date}}
archives:
- name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
replacements:
diff --git a/Makefile b/Makefile
index c6e74c73..4d88d319 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ PACKAGE := github.com/derailed/$(NAME)
GIT := $(shell git rev-parse --short HEAD)
SOURCE_DATE_EPOCH ?= $(shell date +%s)
DATE := $(shell date -u -d @${SOURCE_DATE_EPOCH} +%FT%T%Z)
-VERSION ?= v0.23.6
+VERSION ?= v0.23.7
IMG_NAME := derailed/k9s
IMAGE := ${IMG_NAME}:${VERSION}
@@ -12,7 +12,6 @@ default: help
test: ## Run all tests
@go clean --testcache && go test ./...
-
cover: ## Run test coverage suite
@go test ./... --coverprofile=cov.out
@go tool cover --html=cov.out
diff --git a/change_logs/release_v0.23.7.md b/change_logs/release_v0.23.7.md
new file mode 100644
index 00000000..97930b2b
--- /dev/null
+++ b/change_logs/release_v0.23.7.md
@@ -0,0 +1,27 @@
+
+
+# Release v0.23.7
+
+## Notes
+
+Thank you to all that contributed with flushing out issues and enhancements for K9s! I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev and see if we're happier with some of the fixes! If you've filed an issue please help me verify and close. Your support, kindness and awesome suggestions to make K9s better are as ever very much noted and appreciated!
+
+If you feel K9s is helping your Kubernetes journey, please consider joining our [sponsorhip program](https://github.com/sponsors/derailed) and/or make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer)
+
+On Slack? Please join us [K9slackers](https://join.slack.com/t/k9sers/shared_invite/enQtOTA5MDEyNzI5MTU0LWQ1ZGI3MzliYzZhZWEyNzYxYzA3NjE0YTk1YmFmNzViZjIyNzhkZGI0MmJjYzhlNjdlMGJhYzE2ZGU1NjkyNTM)
+
+---
+
+## Maintenance Release!
+
+---
+
+## Resolved Issues/Features
+
+* [Issue #930](https://github.com/derailed/k9s/issues/930) Version checker is not reporting a new release correctly
+
+## Resolved PRs
+
+---
+
+
© 2020 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)
diff --git a/internal/client/client.go b/internal/client/client.go
index f569fb48..fdd87bf5 100644
--- a/internal/client/client.go
+++ b/internal/client/client.go
@@ -258,7 +258,6 @@ func (a *APIClient) CheckConnectivity() bool {
// Check connection
if _, err := client.ServerVersion(); err == nil {
if !a.connOK {
- log.Debug().Msgf("RESETING CON!!")
a.reset()
}
} else {