diff --git a/CHANGELOG.md b/CHANGELOG.md index e1139e5f..2dade0ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## 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)) + ## v0.25.0 (2023-01-12) ### Feature * **app:** Toggle service readiness checks via environment. ([`76b5928`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/76b5928e198b9ecad21a072fbd343b7586cf4bc9)) diff --git a/pyproject.toml b/pyproject.toml index 1f21489d..e18feada 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ profile = "black" [tool.poetry] name = "starlite-saqlalchemy" -version = "0.25.0" +version = "0.26.0" 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 e630234f..f4593f26 100644 --- a/src/starlite_saqlalchemy/__init__.py +++ b/src/starlite_saqlalchemy/__init__.py @@ -62,4 +62,4 @@ def example_handler() -> dict: "worker", ] -__version__ = "0.25.0" +__version__ = "0.26.0"