diff --git a/CHANGELOG.md b/CHANGELOG.md index ff935e2..904b543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [0.11.1] - 2024-05-29 + +- Fix type annotations in `ApplicationModule` + ## [0.11.0] - 2024-03-24 - Change `composer()` signature from `compose(values)` to `compose(**kwargs)` diff --git a/lato/__init__.py b/lato/__init__.py index 46c4ac3..f3ccab9 100644 --- a/lato/__init__.py +++ b/lato/__init__.py @@ -9,7 +9,7 @@ from .message import Command, Event, Query from .transaction_context import TransactionContext -__version__ = "0.11.0" +__version__ = "0.11.1" __all__ = [ "Application", "ApplicationModule", diff --git a/pyproject.toml b/pyproject.toml index f7fb6ab..6f16ed9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lato" -version = "0.11.0" +version = "0.11.1" description = "Lato is a Python microframework designed for building modular monoliths and loosely coupled applications." authors = ["Przemysław Górecki "] readme = "README.md"