From 0048e13b87e41621921dae546feadab051fc93be Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Wed, 17 Jun 2020 08:38:07 -0700 Subject: [PATCH] cmd/sqlc: Bump version to v1.4.0 --- 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 b7d1001026..c25b52b90b 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.1-devel") + fmt.Printf("%s\n", "v1.4.0") } else { fmt.Printf("%s\n", version) }