From 88acbaf9a8d0c42c878be15c5e899c30b699e4f6 Mon Sep 17 00:00:00 2001 From: Mark Bakhit <16909269+Archmonger@users.noreply.github.com> Date: Sun, 13 Aug 2023 17:17:22 -0700 Subject: [PATCH] 3.3.2 Version Bump (#171) Forgot to bump the `django-reactpy` version in the previous PR. --- CHANGELOG.md | 3 ++- src/reactpy_django/__init__.py | 10 +++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5127e666..f8f06d0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -336,7 +336,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.3.1...HEAD +[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.3.2...HEAD +[3.3.2]: https://github.com/reactive-python/reactpy-django/compare/3.3.1...3.3.2 [3.3.1]: https://github.com/reactive-python/reactpy-django/compare/3.3.0...3.3.1 [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 diff --git a/src/reactpy_django/__init__.py b/src/reactpy_django/__init__.py index 44e04bc1..fc3940e8 100644 --- a/src/reactpy_django/__init__.py +++ b/src/reactpy_django/__init__.py @@ -5,7 +5,7 @@ from reactpy_django import checks, components, decorators, hooks, types, utils from reactpy_django.websocket.paths import REACTPY_WEBSOCKET_PATH -__version__ = "3.3.1" +__version__ = "3.3.2" __all__ = [ "REACTPY_WEBSOCKET_PATH", "hooks", @@ -15,9 +15,9 @@ "utils", "checks", ] -# Built-in asyncio event loops can create `assert f is self._write_fut` exceptions -# while we are using our backhaul thread with Uvicorn, so we use this patch to fix this. -# This also resolves jittery rendering behaviors within Daphne. Can be demonstrated -# using our "Renders Per Second" test page. + +# Fixes bugs with REACTPY_BACKHAUL_THREAD + built-in asyncio event loops. +# Previously, Uvicorn could generate `assert f is self._write_fut` exceptions, and Daphne +# had jittery rendering behaviors. Demonstrated using our "Renders Per Second" test page. with contextlib.suppress(ValueError): nest_asyncio.apply()