diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dade0ed..3dd3b577 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.26.1 (2023-01-13) +### Fix +* **logging:** Don't log exc info for client errors. ([`d497e68`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/d497e68c0ee0da5258d70c069e0ba041a42722b0)) + ## v0.26.0 (2023-01-13) ### Feature * **health:** Custom health checks ([#237](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/237)) ([`bfe64f4`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/bfe64f4cafbaf6b96adfb03749922393de0f38f4)) diff --git a/pyproject.toml b/pyproject.toml index e18feada..97604f19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ profile = "black" [tool.poetry] name = "starlite-saqlalchemy" -version = "0.26.0" +version = "0.26.1" description = "Starlite config plugin with SAQ and SQLAlchemy boilerplate" license = "MIT" authors = ["Peter Schutt "] diff --git a/src/starlite_saqlalchemy/__init__.py b/src/starlite_saqlalchemy/__init__.py index f4593f26..09dfacbd 100644 --- a/src/starlite_saqlalchemy/__init__.py +++ b/src/starlite_saqlalchemy/__init__.py @@ -62,4 +62,4 @@ def example_handler() -> dict: "worker", ] -__version__ = "0.26.0" +__version__ = "0.26.1"