diff --git a/CHANGELOG.md b/CHANGELOG.md index cc64ddf..93a63a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ +## v0.29.0 (2023-01-20) +### Feature +* Optional audit columns on base class ([#264](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/264)) ([`5f4e883`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/5f4e88342e3778b9bf4aa665fb9bef87fc251782)) +* Optional dependencies ([#213](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/213)) ([`efe26d6`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/efe26d6228d708e7cd00031326637c536fe3f13f)) + +### Fix +* **sentry:** Configure sentry before app instantiation ([#258](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/258)) ([`45982b4`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/45982b49c649dd7c2c7b532d50dcc1d8a128422d)) + +### Breaking +* optional audit columns on base class ([#264](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/264)) ([`5f4e883`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/5f4e88342e3778b9bf4aa665fb9bef87fc251782)) +* optional dependencies ([#213](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/213)) ([`efe26d6`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/efe26d6228d708e7cd00031326637c536fe3f13f)) + ## v0.28.1 (2023-01-17) ### Fix * PluginConfig.type_encoders forward ref. ([`65000ee`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/65000ee7d848f9ef8c8bc87149d24ff3fde5302d)) diff --git a/pyproject.toml b/pyproject.toml index 84ca28c..f81a2d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ profile = "black" [tool.poetry] name = "starlite-saqlalchemy" -version = "0.28.1" +version = "0.29.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 c803210..a2d2e60 100644 --- a/src/starlite_saqlalchemy/__init__.py +++ b/src/starlite_saqlalchemy/__init__.py @@ -53,4 +53,4 @@ def example_handler() -> dict: ] -__version__ = "0.28.1" +__version__ = "0.29.0"