10000 Release v1.23.0 by kyleconroy · Pull Request #2908 · sqlc-dev/sqlc · GitHub
[go: up one dir, main page]

Skip to content

Release v1.23.0 #2908

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat(sqlc): Bump to version v1.23.0
  • Loading branch information
kyleconroy committed Oct 24, 2023
commit 51ae7478712ecbc1aced20737869475b640e70b8
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.yml
10000
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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