From 8751f48a4c3a6e94cae7bedf3bb0e7c50b839aaf Mon Sep 17 00:00:00 2001 From: Jehiah Czebotar Date: Thu, 19 Mar 2015 14:52:41 -0400 Subject: [PATCH 1/2] bump to version 1.1 --- version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.go b/version.go index 6ca40d8..27b6de2 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const VERSION = "1.1-alpha" +const VERSION = "1.1" From 6b771fdd9eaa387c65da42ab6050baa54bee0782 Mon Sep 17 00:00:00 2001 From: Jehiah Czebotar Date: Thu, 19 Mar 2015 23:03:00 -0400 Subject: [PATCH 2/2] show Go version --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 05e05e7..f0d03f4 100644 --- a/main.go +++ b/main.go @@ -8,6 +8,7 @@ import ( "net/http" "net/url" "os" + "runtime" "strings" "time" @@ -52,7 +53,7 @@ func main() { flagSet.Parse(os.Args[1:]) if *showVersion { - fmt.Printf("google_auth_proxy v%s\n", VERSION) + fmt.Printf("google_auth_proxy v%s (built with %s)\n", VERSION, runtime.Version()) return }