diff --git a/CHANGELOG.md b/CHANGELOG.md index dd5d8ddd..4438ce55 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.3.0] - 2023-08-05 + ### Added - Added system checks for a variety of common ReactPy misconfigurations. @@ -309,7 +313,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.2.1...HEAD +[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.3.0...HEAD +[3.3.0]: https://github.com/reactive-python/reactpy-django/compare/3.2.1...3.3.0 [3.2.1]: https://github.com/reactive-python/reactpy-django/compare/3.2.0...3.2.1 [3.2.0]: https://github.com/reactive-python/reactpy-django/compare/3.1.0...3.2.0 [3.1.0]: https://github.com/reactive-python/reactpy-django/compare/3.0.1...3.1.0 diff --git a/src/reactpy_django/__init__.py b/src/reactpy_django/__init__.py index fc4c15d4..36483154 100644 --- a/src/reactpy_django/__init__.py +++ b/src/reactpy_django/__init__.py @@ -1,8 +1,7 @@ from reactpy_django import checks, components, decorators, hooks, types, utils from reactpy_django.websocket.paths import REACTPY_WEBSOCKET_PATH - -__version__ = "3.2.1" +__version__ = "3.3.0" __all__ = [ "REACTPY_WEBSOCKET_PATH", "hooks",