From aa35585d4a1e69045cf34ae917db40a5514b2174 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Tue, 12 May 2020 10:37:23 -0700 Subject: [PATCH] cmd: Bump to version 1.3.1-devel --- internal/cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/cmd.go b/internal/cmd/cmd.go index edc3c0db11..f4466f1542 100644 --- a/internal/cmd/cmd.go +++ b/internal/cmd/cmd.go @@ -46,7 +46,7 @@ var versionCmd = &cobra.Command{ if version == "" { // When no version is set, return the next bug fix version // after the most recent tag - fmt.Printf("%s\n", "v1.3.0") + fmt.Printf("%s\n", "v1.3.1-devel") } else { fmt.Printf("%s\n", version) }