diff --git a/CHANGELOG.md b/CHANGELOG.md index c208c3f7..612834ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.16.0 (2022-12-08) +### Feature +* **repo:** Abstract method `filter_collection_by_kwargs()` ([#159](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/159)) ([`15bf7a8`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/15bf7a814da21e105fc26b98a876f68fa0c998b4)) + ## v0.15.0 (2022-12-05) ### Feature * **testing:** ControllerTest utility. ([#152](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/152)) ([`4cc707b`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/4cc707bf25b4493b0477df173040f0fa4454fe1c)) diff --git a/pyproject.toml b/pyproject.toml index 83f732d1..c218d7b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ profile = "black" [tool.poetry] name = "starlite-saqlalchemy" -version = "0.15.0" +version = "0.16.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 fc404796..66234676 100644 --- a/src/starlite_saqlalchemy/__init__.py +++ b/src/starlite_saqlalchemy/__init__.py @@ -62,4 +62,4 @@ def example_handler() -> dict: "worker", ] -__version__ = "0.15.0" +__version__ = "0.16.0"