diff options
author | Victor Häggqvist <[email protected]> | 2016-02-02 16:20:22 +0100 |
---|---|---|
committer | Victor Häggqvist <[email protected]> | 2016-02-02 16:20:22 +0100 |
commit | 4b724e36f5c8b0f73665f66ed68b3ea5e635c783 (patch) | |
tree | de064aab6b030ee96b217beec3d7b937f416e01a | |
parent | 0869d76a1e38abb85e94ee57a735d05ea2866ed3 (diff) |
bump minor
-rw-r--r-- | goboom.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ import ( flag "github.com/ogier/pflag" ) -const version = 0 +const version = "0.1" type Runnable struct { Cmd string `csv:"name"` @@ -235,7 +235,7 @@ func main() { } else if gc { fmt.Printf("Removed %d items\n", runGC()) } else { - fmt.Printf("goboom v%d (%s/%s/%s)\n", version, runtime.GOOS, runtime.GOARCH, runtime.Version()) + fmt.Printf("goboom v%s (%s/%s/%s)\n", version, runtime.GOOS, runtime.GOARCH, runtime.Version()) fmt.Println("\nTo actually use goboom execute goboom_run\n") flag.Usage() } |