From 607aff1a7fca5d0098da6a3e4860585c37c36dc3 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Thu, 12 Aug 2021 20:33:50 -0700 Subject: [PATCH] cmd/sqlc: Bump version to v1.9.0 (#1121) --- 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 fb3a6f35f7..816f2ce56c 100644 --- a/internal/cmd/cmd.go +++ b/internal/cmd/cmd.go @@ -50,7 +50,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.9.0-beta1") + fmt.Printf("%s\n", "v1.9.0") } else { fmt.Printf("%s\n", version) }