From b2166e0d37d8e2236ba4ce2daf610e3feaeabc40 Mon Sep 17 00:00:00 2001 From: Navratan Lal Gupta Date: Mon, 1 May 2023 01:04:35 +0530 Subject: [PATCH] Update version to 1.0.1 --- README.md | 8 ++++---- internal/config/config.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4baa909..be3e8a6 100644 --- a/README.md +++ b/README.md @@ -27,11 +27,11 @@ curl -L https://github.com/navilg/k8senv/releases/latest/download/k8senv-linux-a chmod +x k8senv ``` -Download specific version of `k8senv`. For e.g. To download version `v1.0.0`: +Download specific version of `k8senv`. For e.g. To download version `v1.0.1`: ``` cd ~/.k8senv/bin -curl -L https://github.com/navilg/k8senv/releases/download/v1.0.0/k8senv-linux-amd64 -o k8senv +curl -L https://github.com/navilg/k8senv/releases/download/v1.0.1/k8senv-linux-amd64 -o k8senv chmod +x k8senv ``` @@ -44,11 +44,11 @@ curl -L https://github.com/navilg/k8senv/releases/latest/download/k8senv-linux-a chmod +x k8senv ``` -Download specific version of `k8senv`. For e.g. To download version `v1.0.0`: +Download specific version of `k8senv`. For e.g. To download version `v1.0.1`: ``` cd ~/.k8senv/bin -curl -L https://github.com/navilg/k8senv/releases/download/v1.0.0/k8senv-linux-arm64 -o k8senv +curl -L https://github.com/navilg/k8senv/releases/download/v1.0.1/k8senv-linux-arm64 -o k8senv chmod +x k8senv ``` diff --git a/internal/config/config.go b/internal/config/config.go index 1541ed3..66b9f7b 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -6,7 +6,7 @@ import ( "strings" ) -var version string = "v1.0.0" +var version string = "v1.0.1" var gitCommit string = "###GitCommitPlaceholder###" func getGitCommit() string {