Skip to content

Commit dc8e5e9

Browse files
committed
chore(release): bump version to v0.24.1
1 parent ed69039 commit dc8e5e9

File tree

5 files changed

+332
-316
lines changed

5 files changed

+332
-316
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
- id: mixed-line-ending
1818
- id: trailing-whitespace
1919
- repo: https://github.com/charliermarsh/ruff-pre-commit
20-
rev: "v0.12.12"
20+
rev: "v0.13.0"
2121
hooks:
2222
- id: ruff
2323
args: ["--fix"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ maintainers = [{ name = "Litestar Developers", email = "[email protected]" }]
1313
name = "sqlspec"
1414
readme = "README.md"
1515
requires-python = ">=3.9, <4.0"
16-
version = "0.24.0"
16+
version = "0.24.1"
1717

1818
[project.urls]
1919
Discord = "https://discord.gg/litestar"

tests/unit/test_utils/test_correlation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def test_adapter_with_empty_extra() -> None:
270270

271271
CorrelationContext.set("test-id")
272272

273-
msg, kwargs = adapter.process("Test message", {"extra": {}})
273+
_msg, kwargs = adapter.process("Test message", {"extra": {}})
274274

275275
assert kwargs["extra"]["correlation_id"] == "test-id"
276276

tests/unit/test_utils/test_type_guards.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ def test_extract_dataclass_fields_conflicting_include_exclude() -> None:
695695
"""Test extract_dataclass_fields raises error for conflicting include/exclude."""
696696
instance = SampleDataclass(name="test", age=25)
697697

698-
with pytest.raises(ValueError, match="Fields .* are both included and excluded"):
698+
with pytest.raises(ValueError, match="Fields .* are both included and excluded"): # noqa: RUF043
699699
extract_dataclass_fields(instance, include={"name"}, exclude={"name"})
700700

701701

0 commit comments

Comments
 (0)