From ebd3b59ac687bbb073b62a025c5a03bfe749a387 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Tue, 7 Sep 2021 08:48:02 -0700 Subject: [PATCH] cmd/sqlc: Bump version to v1.10.0 (#1165) --- .github/ISSUE_TEMPLATE/BUG_REPORT.yml | 2 +- docs/conf.py | 2 +- docs/overview/install.md | 8 ++++---- internal/cmd/cmd.go | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml index 2f26e76335..de1c8d208f 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -9,9 +9,9 @@ body: description: What version of sqlc are you running? If you don't know, run `sqlc version`. multiple: false options: + - 1.10.0 - 1.9.0 - 1.8.0 - - 1.7.0 - Other validations: required: true diff --git a/docs/conf.py b/docs/conf.py index b0786b3443..b9821d54d0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Kyle Conroy' # The full version, including alpha/beta/rc tags -release = '1.9.0' +release = '1.10.0' # -- General configuration --------------------------------------------------- diff --git a/docs/overview/install.md b/docs/overview/install.md index ac02bc8a48..424225bbb5 100644 --- a/docs/overview/install.md +++ b/docs/overview/install.md @@ -34,8 +34,8 @@ docker run --rm -v $(pwd):/src -w /src kjconroy/sqlc generate ## Downloads -Get pre-built binaries for *v1.9.0*: +Get pre-built binaries for *v1.10.0*: -- [Linux](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_linux_amd64.tar.gz) -- [macOS](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_darwin_amd64.zip) -- [Windows (MySQL only)](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_windows_amd64.zip) +- [Linux](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_linux_amd64.tar.gz) +- [macOS](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_darwin_amd64.zip) +- [Windows (MySQL only)](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_windows_amd64.zip) diff --git a/internal/cmd/cmd.go b/internal/cmd/cmd.go index 816f2ce56c..eda6b0fd68 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") + fmt.Printf("%s\n", "v1.10.0") } else { fmt.Printf("%s\n", version) }