Skip to content

Commit 7671632

Browse files
committed
feat(sqlc): Bump to version v1.23.0
1 parent bf03e15 commit 7671632

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/ISSUE_TEMPLATE/BUG_REPORT.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ body:
99
description: What version of sqlc are you running? If you don't know, run `sqlc version`.
1010
multiple: false
1111
options:
12+
- 1.23.0
1213
- 1.22.0
1314
- 1.21.0
1415
- 1.20.0

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Riza, Inc.'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.22.0'
25+
release = '1.23.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

docs/howto/ci-cd.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v3
5858
- uses: sqlc-dev/setup-sqlc@v3
5959
with:
60-
sqlc-version: '1.22.0'
60+
sqlc-version: '1.23.0'
6161
- run: sqlc diff
6262
```
6363
@@ -91,7 +91,7 @@ jobs:
9191
- uses: actions/checkout@v3
9292
- uses: sqlc-dev/setup-sqlc@v3
9393
with:
94-
sqlc-version: '1.22.0'
94+
sqlc-version: '1.23.0'
9595
# Connect and migrate your database here. This is an example which runs
9696
# commands from a `schema.sql` file.
9797
- run: psql -h localhost -U postgres -p $PG_PORT -d postgres -f schema.sql
@@ -119,7 +119,7 @@ jobs:
119119
- uses: actions/checkout@v3
120120
- uses: sqlc-dev/setup-sqlc@v3
121121
with:
122-
sqlc-version: '1.22.0'
122+
sqlc-version: '1.23.0'
123123
- run: sqlc vet
124124
```
125125
@@ -144,7 +144,7 @@ jobs:
144144
- uses: actions/checkout@v3
145145
- uses: sqlc-dev/setup-sqlc@v3
146146
with:
147-
sqlc-version: '1.22.0'
147+
sqlc-version: '1.23.0'
148148
- run: sqlc upload
149149
env:
150150
SQLC_AUTH_TOKEN: ${{ secrets.SQLC_AUTH_TOKEN }}

docs/overview/install.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ docker run --rm -v "%cd%:/src" -w /src sqlc/sqlc generate
4848

4949
## Downloads
5050

51-
Get pre-built binaries for *v1.22.0*:
51+
Get pre-built binaries for *v1.23.0*:
5252

53-
- [Linux](https://downloads.sqlc.dev/sqlc_1.22.0_linux_amd64.tar.gz)
54-
- [macOS](https://downloads.sqlc.dev/sqlc_1.22.0_darwin_amd64.zip)
55-
- [Windows](https://downloads.sqlc.dev/sqlc_1.22.0_windows_amd64.zip)
53+
- [Linux](https://downloads.sqlc.dev/sqlc_1.23.0_linux_amd64.tar.gz)
54+
- [macOS](https://downloads.sqlc.dev/sqlc_1.23.0_darwin_amd64.zip)
55+
- [Windows](https://downloads.sqlc.dev/sqlc_1.23.0_windows_amd64.zip)
5656

5757
See [downloads.sqlc.dev](https://downloads.sqlc.dev/) for older versions.

internal/info/facts.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package info
22

33
// When no version is set, return the next bug fix version
44
// after the most recent tag
5-
const Version = "v1.22.0"
5+
const Version = "v1.23.0"

0 commit comments

Comments
 (0)