diff --git a/CHANGELOG.md b/CHANGELOG.md index 05bad506..4f0b0ce2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.8.1 (2022-11-16) +### Fix +* **scripts:** Set `factory` setting on uvicorn config. ([`bce93f3`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/bce93f3817c6c8647fc3dc5521eb12b04f77bdad)) + ## v0.8.0 (2022-11-16) ### Feature * **app:** Support for using app factory. ([`a176908`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/a1769085a61f09cf4991448313a6164f488adf79)) diff --git a/pyproject.toml b/pyproject.toml index dce536b7..437ab7d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ profile = "black" [tool.poetry] name = "starlite-saqlalchemy" -version = "0.8.0" +version = "0.8.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 17e4de7c..8090027d 100644 --- a/src/starlite_saqlalchemy/__init__.py +++ b/src/starlite_saqlalchemy/__init__.py @@ -63,4 +63,4 @@ def example_handler() -> dict: "worker", ] -__version__ = "0.8.0" +__version__ = "0.8.1"