diff --git a/CHANGELOG.md b/CHANGELOG.md index 341b191c..54c48be9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.13.1 (2022-11-24) +### Fix +* **testing:** Fix GenericMockRepository collections. ([#136](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/136)) ([`246c103`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/246c10305c8436f47142cd6208ba4bcf85017f17)) + ## v0.13.0 (2022-11-21) ### Feature * Simplify service and repo. ([#134](https://github.com/topsport-com-au/starlite-saqlalchemy/issues/134)) ([`ed3b59a`](https://github.com/topsport-com-au/starlite-saqlalchemy/commit/ed3b59aea64d82bdc75ef4fca65b93b6fcf45d4c)) diff --git a/pyproject.toml b/pyproject.toml index 6179fdde..770bd043 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ profile = "black" [tool.poetry] name = "starlite-saqlalchemy" -version = "0.13.0" +version = "0.13.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 d55be24a..dc2c2ad7 100644 --- a/src/starlite_saqlalchemy/__init__.py +++ b/src/starlite_saqlalchemy/__init__.py @@ -62,4 +62,4 @@ def example_handler() -> dict: "worker", ] -__version__ = "0.13.0" +__version__ = "0.13.1"