From c88d3ad62a224782cc0fc163859e4c7f14f56772 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Wed, 21 Oct 2020 12:50:25 -0700 Subject: [PATCH 1/5] update makefile --- src/install/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/install/Makefile b/src/install/Makefile index 034e231c..5cf244ad 100644 --- a/src/install/Makefile +++ b/src/install/Makefile @@ -1,8 +1,9 @@ # VERSION=8.X.Y make release release: - cd ../../ && go generate - cd ../../ && go generate + cd ../../ && go run src/install/updateversion.go + git commit -am "bump ${VERSION}" + git tag -af v${VERSION} -m "v${VERSION}" cp zsh_autocomplete ../../ cp bash_autocomplete ../../ cd ../../ && goreleaser release From bb971a9937713acaa4aaa1376b5c79717ba1f6e5 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Wed, 21 Oct 2020 12:50:30 -0700 Subject: [PATCH 2/5] bump 8.6.1 --- README.md | 2 +- src/cli/cli.go | 2 +- src/install/default.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index df60f453..08a104b3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ src="https://user-images.githubusercontent.com/6550035/46709024-9b23ad00-cbf6-11e8-9fb2-ca8b20b7dbec.jpg" width="408px" border="0" alt="croc">
-Version +Version Coverage Build
diff --git a/src/cli/cli.go b/src/cli/cli.go
index 07c34753..960bc923 100644
--- a/src/cli/cli.go
+++ b/src/cli/cli.go
@@ -33,7 +33,7 @@ func Run() (err error) {
 	app := cli.NewApp()
 	app.Name = Date: Wed, 21 Oct 2020 12:51:43 -0700 Subject: [PATCH 3/5] fix makefile --- src/install/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/install/Makefile b/src/install/Makefile index 5cf244ad..ccf42b1b 100644 --- a/src/install/Makefile +++ b/src/install/Makefile @@ -4,10 +4,11 @@ release: cd ../../ && go run src/install/updateversion.go git commit -am "bump ${VERSION}" git tag -af v${VERSION} -m "v${VERSION}" + git push + git push --tags cp zsh_autocomplete ../../ cp bash_autocomplete ../../ cd ../../ && goreleaser release - git push cd ../../ && ./src/install/prepare-sources-tarball.sh cd ../../ && ./src/install/upload-src-tarball.sh From 5a791e98af5ed6dcfc67dffbc5f94541b6658644 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Wed, 21 Oct 2020 12:51:47 -0700 Subject: [PATCH 4/5] bump 8.6.2 --- README.md | 2 +- src/cli/cli.go | 2 +- src/install/default.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 08a104b3..3f7ec352 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ src="https://user-images.githubusercontent.com/6550035/46709024-9b23ad00-cbf6-11e8-9fb2-ca8b20b7dbec.jpg" width="408px" border="0" alt="croc">
-
Version +Version Coverage Build
diff --git a/src/cli/cli.go b/src/cli/cli.go
index 960bc923..dd23340a 100644
--- a/src/cli/cli.go
+++ b/src/cli/cli.go
@@ -33,7 +33,7 @@ func Run() (err error) {
 	app := cli.NewApp()
 	app.Name = Date: Wed, 21 Oct 2020 12:52:53 -0700 Subject: [PATCH 5/5] bump 8.6.2 --- src/cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/cli.go b/src/cli/cli.go index dd23340a..4564d7b1 100644 --- a/src/cli/cli.go +++ b/src/cli/cli.go @@ -33,7 +33,7 @@ func Run() (err error) { app := cli.NewApp() app.Name = "croc" if Version == "" { - Version = "v8.6.2-0d767af" + Version = "v8.6.2-5a791e9" } app.Version = Version app.Compiled = time.Now()