Skip to content

Commit a6b9a89

Browse files
chore: pre-commit autoupdate (#4523)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 31022b1 commit a6b9a89

File tree

6 files changed

+17
-18
lines changed

6 files changed

+17
-18
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ repos:
1010
# rustfmt handles rust files, and in some snapshots we expect trailing spaces.
1111
exclude: '.*\.(rs|snap)$'
1212
- repo: https://github.com/crate-ci/typos
13-
rev: v1.21.0
13+
rev: v1.22.0
1414
hooks:
1515
- id: typos
1616
# https://github.com/crate-ci/typos/issues/347
1717
pass_filenames: false
1818
- repo: https://github.com/rbubley/mirrors-prettier
19-
rev: v3.2.5
19+
rev: v3.3.0
2020
hooks:
2121
- id: prettier
2222
additional_dependencies:
@@ -25,7 +25,7 @@ repos:
2525
# https://github.com/PRQL/prql/issues/3078
2626
- prettier-plugin-go-template
2727
- repo: https://github.com/astral-sh/ruff-pre-commit
28-
rev: v0.4.5
28+
rev: v0.4.7
2929
hooks:
3030
- id: ruff
3131
args: [--fix]
@@ -45,7 +45,7 @@ repos:
4545
- id: clippy
4646
stages: [manual]
4747
- repo: https://github.com/rhysd/actionlint
48-
rev: v1.7.0
48+
rev: v1.7.1
4949
hooks:
5050
- id: actionlint
5151
- repo: https://github.com/tcort/markdown-link-check

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,8 +1141,8 @@ below in this release).
11411141

11421142
**Documentation**:
11431143

1144-
[This release, the changelog only contains a subset of documentation
1145-
improvements]
1144+
[This release, the changelog only contains a subset of
1145+
documentation improvements]
11461146

11471147
- Add docs on aliases in
11481148
[Select](https://prql-lang.org/book/reference/stdlib/transforms/select.html)

prqlc/prqlc/tests/integration/dbs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Tests are by default run on all the DBs with `SupportLevel::Supported`.
4747

4848
If you also want to test on a DB that is not yet at this support level like
4949
`MSSQL`, simply add `# mssql:test` on top of your query.\
50-
If you want to ignore one of the supported DBs like `sqlite`, simply add `# sqlite:skip`
51-
on top of your query.
50+
If you want to ignore one of the supported DBs like `sqlite`, simply add
51+
`# sqlite:skip` on top of your query.
5252

5353
## Data
5454

web/book/src/project/contributing/development.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ editing, and testing PRQL's compiler code in two minutes:
77

88
- Install
99
[`rustup` & `cargo`](https://doc.rust-lang.org/cargo/getting-started/installation.html).
10-
- [Optional but highly recommended] Install `cargo-insta`, our testing
11-
framework:
10+
- [Optional but highly recommended] Install `cargo-insta`, our testing framework:
1211

1312
```sh
1413
cargo install cargo-insta
@@ -474,8 +473,9 @@ Currently we release in a semi-automated way:
474473

475474
3. After merging, go to
476475
[Draft a new release](https://github.com/PRQL/prql/releases/new){{footnote: Only
477-
maintainers have access to this page.}}, copy the changelog entry into the
478-
release description{{footnote: Unfortunately GitHub's markdown parser
476+
maintainers have access to this page.}},
477+
copy the changelog entry into the release
478+
description{{footnote: Unfortunately GitHub's markdown parser
479479
interprets linebreaks as newlines. I haven't found a better way of
480480
editing the markdown to look reasonable than manually editing the text
481481
or asking LLM to help.}}, enter the tag to be created, and hit

web/book/src/reference/stdlib/date.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ These are all the functions defined in the `date` module:
55
### `to_text`
66

77
Converts a date into a text.\
8-
Since there are many possible date representations, `to_text` takes a `format` parameter
9-
that describes thanks to [specifiers](#date--time-format-specifiers) how the date
10-
or timestamp should be structured.
8+
Since there are many possible date representations, `to_text` takes a `format`
9+
parameter that describes thanks to [specifiers](#date--time-format-specifiers)
10+
how the date or timestamp should be structured.
1111

1212
```admonish info
1313
Since all RDBMS have different ways to format dates and times, PRQL **requires an explicit dialect** to be specified

web/website/content/posts/2023-02-02-one-year/_index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ Language design & development in the last year have been focused on these areas:
3030
- fundamentals of how [functions](https://github.com/PRQL/prql/issues/444) and
3131
pipelines are [evaluated](#define-functional-semantics).
3232

33-
- small quality-of-life language features (e.g. syntax for [f-strings, dates,
34-
coalesce operator](https://prql-lang.org/book/reference/syntax/
35-
[case](https://github.com/PRQL/prql/issues/504)),
33+
- small quality-of-life language features (e.g. syntax for [f-strings,
34+
dates, coalesce operator](https://prql-lang.org/book/reference/syntax/ [case](https://github.com/PRQL/prql/issues/504)),
3635

3736
PRQL is now in a state where it can greatly improve the developer experience for
3837
writing complex analytical queries, but it does require a bit of fiddling to set

0 commit comments

Comments
 (0)