diff --git a/CHANGELOG.md b/CHANGELOG.md index be8c43b3..8c8cfd43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,7 +34,11 @@ Using the following categories, list your changes in this order: ## [Unreleased] -### Removed +- Nothing (yet)! + +## [3.0.1] - 2023-03-31 + +### Changed - `django-reactpy` database entries are no longer cleaned during Django application startup. Instead, it will occur on webpage loads if `REACTPY_RECONNECT_MAX` seconds has elapsed since the last cleaning. @@ -256,7 +260,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.0-reactpy...HEAD +[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.0.1...HEAD +[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 [2.2.1]: https://github.com/reactive-python/reactpy-django/compare/2.2.0...2.2.1 diff --git a/src/reactpy_django/__init__.py b/src/reactpy_django/__init__.py index 718a048c..ec64311d 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.0" +__version__ = "3.0.1" __all__ = [ "REACTPY_WEBSOCKET_PATH", "hooks",