diff --git a/CHANGELOG.md b/CHANGELOG.md index dc24b700..ae42f876 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v0.11.0 (2022-11-17) +### Feature +* **dto:** Relationship support + test for forward refs ([`1bb3fb3`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/1bb3fb3ceaddfb440531d582ea1b852792983629)) +* **logging:** Configurable dependency log levels. ([`a4fda6d`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/a4fda6dc5de64c8e4ca45ac42d96fa808677439d)) + ## v0.10.0 (2022-11-17) ### Feature * **service:** __class_getitem__ sets `repository_type` on service. ([`4127f3a`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/4127f3aec85560b1f17eaf90518f94d83e0ef5fd)) diff --git a/pyproject.toml b/pyproject.toml index b5c9cdb5..dc839531 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ profile = "black" [tool.poetry] name = "starlite-saqlalchemy" -version = "0.10.0" +version = "0.11.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 4e871ef8..1a9ad38d 100644 --- a/src/starlite_saqlalchemy/__init__.py +++ b/src/starlite_saqlalchemy/__init__.py @@ -63,4 +63,4 @@ def example_handler() -> dict: "worker", ] -__version__ = "0.10.0" +__version__ = "0.11.0"