Skip to content
This repository was archived by the owner on Jan 24, 2019. It is now read-only.

Commit 736ec2a

Browse files
committed
Merge pull request #56 from jehiah/release_56
Cut a new release
2 parents eb67be7 + 6b771fd commit 736ec2a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"net/http"
99
"net/url"
1010
"os"
11+
"runtime"
1112
"strings"
1213
"time"
1314

@@ -52,7 +53,7 @@ func main() {
5253
flagSet.Parse(os.Args[1:])
5354

5455
if *showVersion {
55-
fmt.Printf("google_auth_proxy v%s\n", VERSION)
56+
fmt.Printf("google_auth_proxy v%s (built with %s)\n", VERSION, runtime.Version())
5657
return
5758
}
5859

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package main
22

3-
const VERSION = "1.1-alpha"
3+
const VERSION = "1.1"

0 commit comments

Comments
 (0)