diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml index 4ded0ee603..8472dcb7d6 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -9,6 +9,7 @@ body: description: What version of sqlc are you running? If you don't know, run `sqlc version`. multiple: false options: + - 1.23.0 - 1.22.0 - 1.21.0 - 1.20.0 diff --git a/docs/conf.py b/docs/conf.py index 6773d2d93b..5e84471d3c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Riza, Inc.' # The full version, including alpha/beta/rc tags -release = '1.22.0' +release = '1.23.0' # -- General configuration --------------------------------------------------- diff --git a/docs/howto/ci-cd.md b/docs/howto/ci-cd.md index ac498d18c4..752ad96e13 100644 --- a/docs/howto/ci-cd.md +++ b/docs/howto/ci-cd.md @@ -57,7 +57,7 @@ jobs: - uses: actions/checkout@v3 - uses: sqlc-dev/setup-sqlc@v3 with: - sqlc-version: '1.22.0' + sqlc-version: '1.23.0' - run: sqlc diff ``` @@ -91,7 +91,7 @@ jobs: - uses: actions/checkout@v3 - uses: sqlc-dev/setup-sqlc@v3 with: - sqlc-version: '1.22.0' + sqlc-version: '1.23.0' # Connect and migrate your database here. This is an example which runs # commands from a `schema.sql` file. - run: psql -h localhost -U postgres -p $PG_PORT -d postgres -f schema.sql @@ -119,7 +119,7 @@ jobs: - uses: actions/checkout@v3 - uses: sqlc-dev/setup-sqlc@v3 with: - sqlc-version: '1.22.0' + sqlc-version: '1.23.0' - run: sqlc vet ``` @@ -144,7 +144,7 @@ jobs: - uses: actions/checkout@v3 - uses: sqlc-dev/setup-sqlc@v3 with: - sqlc-version: '1.22.0' + sqlc-version: '1.23.0' - run: sqlc upload env: SQLC_AUTH_TOKEN: ${{ secrets.SQLC_AUTH_TOKEN }} diff --git a/docs/overview/install.md b/docs/overview/install.md index 86113b0423..490d107b2b 100644 --- a/docs/overview/install.md +++ b/docs/overview/install.md @@ -48,10 +48,10 @@ docker run --rm -v "%cd%:/src" -w /src sqlc/sqlc generate ## Downloads -Get pre-built binaries for *v1.22.0*: +Get pre-built binaries for *v1.23.0*: -- [Linux](https://downloads.sqlc.dev/sqlc_1.22.0_linux_amd64.tar.gz) -- [macOS](https://downloads.sqlc.dev/sqlc_1.22.0_darwin_amd64.zip) -- [Windows](https://downloads.sqlc.dev/sqlc_1.22.0_windows_amd64.zip) +- [Linux](https://downloads.sqlc.dev/sqlc_1.23.0_linux_amd64.tar.gz) +- [macOS](https://downloads.sqlc.dev/sqlc_1.23.0_darwin_amd64.zip) +- [Windows](https://downloads.sqlc.dev/sqlc_1.23.0_windows_amd64.zip) See [downloads.sqlc.dev](https://downloads.sqlc.dev/) for older versions. diff --git a/internal/info/facts.go b/internal/info/facts.go index e150dae4d3..ead2fed25c 100644 --- a/internal/info/facts.go +++ b/internal/info/facts.go @@ -2,4 +2,4 @@ package info // When no version is set, return the next bug fix version // after the most recent tag -const Version = "v1.22.0" +const Version = "v1.23.0"