Skip to content

Commit

Permalink
feat(sqlc): Bump to version v1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleconroy committed Oct 24, 2023
1 parent bf03e15 commit 7671632
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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 ---------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions docs/howto/ci-cd.md
Expand Up @@ -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
```

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
```

Expand All @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions docs/overview/install.md
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion internal/info/facts.go
Expand Up @@ -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"

0 comments on commit 7671632

Please sign in to comment.