Skip to content

Commit a87becf

Browse files
committed
chore(release): bump to v0.5.0
1 parent e677fb7 commit a87becf

File tree

4 files changed

+528
-455
lines changed

4 files changed

+528
-455
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
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.11.9"
20+
rev: "v0.12.0"
2121
hooks:
2222
- id: ruff
2323
args: ["--fix"]
@@ -30,7 +30,7 @@ repos:
3030
additional_dependencies:
3131
- tomli
3232
- repo: https://github.com/pre-commit/mirrors-mypy
33-
rev: "v1.15.0"
33+
rev: "v1.16.1"
3434
hooks:
3535
- id: mypy
3636
exclude: "docs"

litestar_asyncpg/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ async def set_json_handlers(conn: "AsyncpgConnection") -> None:
230230
format="text",
231231
)
232232
if user_init not in (None, Empty):
233-
await user_init(conn)
233+
await user_init(conn) # type: ignore[misc,unused-ignore]
234234

235235
# Only inject if at least one is not None
236236
if self.json_serializer is not None or self.json_deserializer is not None:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ license = { text = "MIT" }
3232
name = "litestar-asyncpg"
3333
readme = "README.md"
3434
requires-python = ">=3.9"
35-
version = "0.4.0"
35+
version = "0.5.0"
3636

3737
[project.urls]
3838
Changelog = "https://litestar-org.github.io/litesatr-asyncpg/latest/changelog"

0 commit comments

Comments
 (0)