Skip to content

Commit ebd3b59

Browse files
authored
cmd/sqlc: Bump version to v1.10.0 (#1165)
1 parent 32bb0ad commit ebd3b59

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/ISSUE_TEMPLATE/BUG_REPORT.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ 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.10.0
1213
- 1.9.0
1314
- 1.8.0
14-
- 1.7.0
1515
- Other
1616
validations:
1717
required: true

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Kyle Conroy'
2323

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

2727

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

docs/overview/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ docker run --rm -v $(pwd):/src -w /src kjconroy/sqlc generate
3434

3535
## Downloads
3636

37-
Get pre-built binaries for *v1.9.0*:
37+
Get pre-built binaries for *v1.10.0*:
3838

39-
- [Linux](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_linux_amd64.tar.gz)
40-
- [macOS](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_darwin_amd64.zip)
41-
- [Windows (MySQL only)](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_windows_amd64.zip)
39+
- [Linux](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_linux_amd64.tar.gz)
40+
- [macOS](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_darwin_amd64.zip)
41+
- [Windows (MySQL only)](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_windows_amd64.zip)

internal/cmd/cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var versionCmd = &cobra.Command{
5050
if version == "" {
5151
// When no version is set, return the next bug fix version
5252
// after the most recent tag
53-
fmt.Printf("%s\n", "v1.9.0")
53+
fmt.Printf("%s\n", "v1.10.0")
5454
} else {
5555
fmt.Printf("%s\n", version)
5656
}

0 commit comments

Comments
 (0)