From cd18067f0afe205c4f66c766c05436a009db158f Mon Sep 17 00:00:00 2001 From: Zaq? Wiedmann Date: Wed, 8 Nov 2017 22:20:28 -0800 Subject: [PATCH] (version) 0.5.1 version bump --- README.md | 4 ++-- cmd/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ffc27239..3c1a5128 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ lab will look for hub and uses that as your git binary when available so you don $ lab version git version 2.11.0 hub version 2.3.0-pre9 -lab version 0.5.0 +lab version 0.5.1 ``` # Inspiration @@ -34,7 +34,7 @@ $ go get -u github.com/zaquestion/lab $ lab version git version 2.11.0 -lab version 0.5.0 +lab version 0.5.1 ``` The first time you run lab it will prompt for your GitLab information. All configuration is managed through `git config` so don't worry if you mess it up. Keys can be set at the system, global, or local level. diff --git a/cmd/version.go b/cmd/version.go index cb5c7d5c..00248640 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -17,7 +17,7 @@ var versionCmd = &cobra.Command{ git.Stdout = nil git.Stderr = nil version, _ := git.Output() - fmt.Printf("%s%s\n", string(version), "lab version 0.5.0") + fmt.Printf("%s%s\n", string(version), "lab version 0.5.1") }, }