Skip to content

Commit f6c854e

Browse files
chore(deps): bump versions (#671)
1 parent 34a3fba commit f6c854e

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
additional_dependencies: [black==24.*]
3030

3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: "v0.14.3"
32+
rev: "v0.14.4"
3333
hooks:
3434
- id: ruff-check
3535
args: ["--fix", "--show-fixes"]

docs/pages/guides/style.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Here is the snippet to add the formatter to your `.pre-commit-config.yml`
111111

112112
```yaml
113113
- repo: https://github.com/astral-sh/ruff-pre-commit
114-
rev: "v0.14.3"
114+
rev: "v0.14.4"
115115
hooks:
116116
# id: ruff-check would go here if using both
117117
- id: ruff-format
@@ -201,7 +201,7 @@ pre-commit hook.
201201
202202
```yaml
203203
- repo: https://github.com/astral-sh/ruff-pre-commit
204-
rev: "v0.14.3"
204+
rev: "v0.14.4"
205205
hooks:
206206
- id: ruff-check
207207
args: ["--fix", "--show-fixes"]
@@ -756,7 +756,7 @@ following pre-commit config:
756756

757757
```yaml
758758
- repo: https://github.com/pre-commit/mirrors-clang-format
759-
rev: "v21.1.2"
759+
rev: "v21.1.5"
760760
hooks:
761761
- id: clang-format
762762
types_or: [c++, c, cuda]

noxfile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,7 @@ def get_latest_version_tag(repo: str, old_version: str) -> dict[str, Any] | None
481481
for x in results
482482
if x["name"].count(".") == old_version.count(".")
483483
and x["name"].startswith("v") == old_version.startswith("v")
484+
and "beta" not in x["name"]
484485
]
485486
if tags:
486487
return tags[0] # type: ignore[no-any-return]

{{cookiecutter.project_name}}/.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
args: [--prose-wrap=always]
4343

4444
- repo: https://github.com/astral-sh/ruff-pre-commit
45-
rev: "v0.14.3"
45+
rev: "v0.14.4"
4646
hooks:
4747
- id: ruff-check
4848
args: ["--fix", "--show-fixes"]
@@ -51,7 +51,7 @@ repos:
5151
{%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %}
5252

5353
- repo: https://github.com/pre-commit/mirrors-clang-format
54-
rev: "v21.1.2"
54+
rev: "v21.1.5"
5555
hooks:
5656
- id: clang-format
5757
types_or: [c++, c, cuda]

0 commit comments

Comments
 (0)