diff --git a/fastapi_events/__init__.py b/fastapi_events/__init__.py index 597ee88..cd3f4b4 100644 --- a/fastapi_events/__init__.py +++ b/fastapi_events/__init__.py @@ -4,7 +4,7 @@ from fastapi_events.handlers.base import BaseEventHandler -__version__ = "0.10.0" +__version__ = "0.10.1" # handlers keeps track of all handlers registered via EventHandlerASGIMiddleware handler_store: Dict[int, Iterable[BaseEventHandler]] = defaultdict(list)