Skip to content

Commit

Permalink
cmd/sqlc: Bump version to v1.10.0 (#1165)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleconroy committed Sep 7, 2021
1 parent 32bb0ad commit ebd3b59
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUG_REPORT.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ body:
description: What version of sqlc are you running? If you don't know, run `sqlc version`.
multiple: false
options:
- 1.10.0
- 1.9.0
- 1.8.0
- 1.7.0
- Other
validations:
required: true
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 = 'Kyle Conroy'

# The full version, including alpha/beta/rc tags
release = '1.9.0'
release = '1.10.0'


# -- General configuration ---------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions docs/overview/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ docker run --rm -v $(pwd):/src -w /src kjconroy/sqlc generate

## Downloads

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

- [Linux](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_linux_amd64.tar.gz)
- [macOS](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_darwin_amd64.zip)
- [Windows (MySQL only)](https://github.com/kyleconroy/sqlc/releases/download/v1.9.0/sqlc_1.9.0_windows_amd64.zip)
- [Linux](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_linux_amd64.tar.gz)
- [macOS](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_darwin_amd64.zip)
- [Windows (MySQL only)](https://github.com/kyleconroy/sqlc/releases/download/v1.10.0/sqlc_1.10.0_windows_amd64.zip)
2 changes: 1 addition & 1 deletion internal/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var versionCmd = &cobra.Command{
if version == "" {
// When no version is set, return the next bug fix version
// after the most recent tag
fmt.Printf("%s\n", "v1.9.0")
fmt.Printf("%s\n", "v1.10.0")
} else {
fmt.Printf("%s\n", version)
}
Expand Down

0 comments on commit ebd3b59

Please sign in to comment.