Skip to content

Commit

Permalink
cmd/sqlc: Bump version to v1.12.0 (sqlc-dev#1415)
Browse files Browse the repository at this point in the history
* docs: Add v1.12.0 to the Changelog
  • Loading branch information
kyleconroy authored Feb 6, 2022
1 parent 41b2386 commit 45bd150
Show file tree
Hide file tree
Showing 7 changed files with 974 additions and 9 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.12.0
- 1.11.0
- 1.10.0
- 1.9.0
- Other
validations:
required: true
Expand Down
7 changes: 5 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ All notable changes to this project will be documented in this file.\n
# https://tera.netlify.app/docs/#introduction
body = """
{% if version %}\
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
## [{{ version | trim_start_matches(pat="v") }}](https://github.com/kyleconroy/sqlc/releases/tag/{{ version }})
{% else %}\
## [unreleased]
{% endif %}\
Released {{ timestamp | date(format="%Y-%m-%d") }}
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
Expand Down Expand Up @@ -50,4 +53,4 @@ filter_commits = false
# glob pattern for matching git tags
tag_pattern = "v[0-9]*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
skip_tags = "v*beta"
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.11.0'
release = '1.12.0'


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ code ever again.
reference/query-annotations.md
reference/language-support.rst
reference/environment-variables.md
reference/changelog.md

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

## Downloads

Get pre-built binaries for *v1.11.0*:
Get pre-built binaries for *v1.12.0*:

- [Linux](https://github.com/kyleconroy/sqlc/releases/download/v1.11.0/sqlc_1.11.0_linux_amd64.tar.gz)
- [macOS](https://github.com/kyleconroy/sqlc/releases/download/v1.11.0/sqlc_1.11.0_darwin_amd64.zip)
- [Windows (MySQL only)](https://github.com/kyleconroy/sqlc/releases/download/v1.11.0/sqlc_1.11.0_windows_amd64.zip)
- [Linux](https://github.com/kyleconroy/sqlc/releases/download/v1.12.0/sqlc_1.12.0_linux_amd64.tar.gz)
- [macOS](https://github.com/kyleconroy/sqlc/releases/download/v1.12.0/sqlc_1.12.0_darwin_amd64.zip)
- [Windows (MySQL only)](https://github.com/kyleconroy/sqlc/releases/download/v1.12.0/sqlc_1.12.0_windows_amd64.zip)
Loading

0 comments on commit 45bd150

Please sign in to comment.