From c31a26dda81c9c760406ee17d7bbf8efac4ae7b1 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Sun, 28 Feb 2021 09:01:12 -0800 Subject: [PATCH] cmd/sqlc: Bump version to v1.7.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 a24a2959e6..59dc3e6a14 100644 --- a/internal/cmd/cmd.go +++ b/internal/cmd/cmd.go @@ -49,7 +49,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.6.1-devel") + fmt.Printf("%s\n", "v1.7.0") } else { fmt.Printf("%s\n", version) }