Skip to content

Commit

Permalink
bump version to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
melvinkcx committed Aug 10, 2023
1 parent f2698a3 commit d1cd40c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Features:
for contributing to the idea)
* (__>=0.7.0__) supports OpenTelemetry: see [this section](#opentelemetry-otel-support) for details
* (__>=0.9.0__) supports dependencies in local handlers: see [this section](#using-dependencies-in-local-handler) for details
* (__>=0.9.1__) supports Pydantic v2

If you use or like this project, please consider giving it a star so it can reach more developers. Thanks =)

Expand Down
2 changes: 1 addition & 1 deletion fastapi_events/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from fastapi_events.handlers.base import BaseEventHandler

__version__ = "0.9.0"
__version__ = "0.9.1"

# handlers keeps track of all handlers registered via EventHandlerASGIMiddleware
handler_store: Dict[int, Iterable[BaseEventHandler]] = defaultdict(list)
Expand Down

0 comments on commit d1cd40c

Please sign in to comment.