From 2f566d692aaa052fd112fd49d80737d65d32757d Mon Sep 17 00:00:00 2001 From: "Stephen McQuay (smcquay)" Date: Tue, 9 Jan 2018 16:33:41 -0800 Subject: [PATCH] bumps version --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8e9553c..b5043b7 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ type v struct { func main() { http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) { w.Header().Set("Content-Type", "application/json") - r := v{"v0.0.1"} + r := v{"v0.0.2"} if err := json.NewEncoder(w).Encode(r); err != nil { log.Printf("json: %+v", err) }