From 4fc2c8a0db3e6038dd04eb27390dafd5b2d74fc2 Mon Sep 17 00:00:00 2001 From: Mark Bakhit <16909269+Archmonger@users.noreply.github.com> Date: Sat, 5 Aug 2023 00:50:33 -0700 Subject: [PATCH] v3.3.0 (#168) --- CHANGELOG.md | 7 ++++++- src/reactpy_django/__init__.py | 3 +-- 2 files changed, 7 insertions(+), 3 deletions(-) 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",