diff --git a/CHANGELOG.md b/CHANGELOG.md index f651748f..55a8c0f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,10 @@ Using the following categories, list your changes in this order: ## [Unreleased] +- Nothing (yet) + +## [3.1.0] - 2023-05-06 + ### Added - `use_query` now supports async functions. @@ -273,7 +277,8 @@ Using the following categories, list your changes in this order: - Support for IDOM within the Django -[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.0.1...HEAD +[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.1.0...HEAD +[3.1.0]: https://github.com/reactive-python/reactpy-django/compare/3.0.1...3.1.0 [3.0.1]: https://github.com/reactive-python/reactpy-django/compare/3.0.0-reactpy...3.0.1 [3.0.0-reactpy]: https://github.com/reactive-python/reactpy-django/compare/3.0.0...3.0.0-reactpy [3.0.0]: https://github.com/reactive-python/reactpy-django/compare/2.2.1...3.0.0 diff --git a/src/reactpy_django/__init__.py b/src/reactpy_django/__init__.py index ec64311d..195626aa 100644 --- a/src/reactpy_django/__init__.py +++ b/src/reactpy_django/__init__.py @@ -2,7 +2,7 @@ from reactpy_django.websocket.paths import REACTPY_WEBSOCKET_PATH -__version__ = "3.0.1" +__version__ = "3.1.0" __all__ = [ "REACTPY_WEBSOCKET_PATH", "hooks",