From 8003a22e45f392dd227bf68b192d9207c81a8007 Mon Sep 17 00:00:00 2001 From: Ben Boyter Date: Wed, 13 Nov 2019 09:03:10 +1100 Subject: [PATCH] Version 2.10.1 --- README.md | 12 ++++++------ processor/processor.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 333380f9..bb5f8084 100644 --- a/README.md +++ b/README.md @@ -421,12 +421,12 @@ scc is pretty well tested with many unit, integration and benchmarks to ensure t Run go build for windows and linux then the following in linux, keep in mind need to update the version ``` -GOOS=darwin GOARCH=amd64 go build -ldflags="-s -w" && zip -r9 scc-2.10.0-x86_64-apple-darwin.zip scc -GOOS=darwin GOARCH=386 go build -ldflags="-s -w" && zip -r9 scc-2.10.0-i386-apple-darwin.zip scc -GOOS=windows GOARCH=amd64 go build -ldflags="-s -w" && zip -r9 scc-2.10.0-x86_64-pc-windows.zip scc.exe -GOOS=windows GOARCH=386 go build -ldflags="-s -w" && zip -r9 scc-2.10.0-i386-pc-windows.zip scc.exe -GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" && zip -r9 scc-2.10.0-x86_64-unknown-linux.zip scc -GOOS=linux GOARCH=386 go build -ldflags="-s -w" && zip -r9 scc-2.10.0-i386-unknown-linux.zip scc +GOOS=darwin GOARCH=amd64 go build -ldflags="-s -w" && zip -r9 scc-2.10.1-x86_64-apple-darwin.zip scc +GOOS=darwin GOARCH=386 go build -ldflags="-s -w" && zip -r9 scc-2.10.1-i386-apple-darwin.zip scc +GOOS=windows GOARCH=amd64 go build -ldflags="-s -w" && zip -r9 scc-2.10.1-x86_64-pc-windows.zip scc.exe +GOOS=windows GOARCH=386 go build -ldflags="-s -w" && zip -r9 scc-2.10.1-i386-pc-windows.zip scc.exe +GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" && zip -r9 scc-2.10.1-x86_64-unknown-linux.zip scc +GOOS=linux GOARCH=386 go build -ldflags="-s -w" && zip -r9 scc-2.10.1-i386-unknown-linux.zip scc ``` ### Badges (beta) diff --git a/processor/processor.go b/processor/processor.go index c36daf0c..459bc489 100644 --- a/processor/processor.go +++ b/processor/processor.go @@ -15,7 +15,7 @@ import ( ) // The version of the application -var Version = "2.11.0" +var Version = "2.10.1" // Flags set via the CLI which control how the output is displayed