Skip to content

Commit 88acbaf

Browse files
authored
3.3.2 Version Bump (#171)
Forgot to bump the `django-reactpy` version in the previous PR.
1 parent b058b9e commit 88acbaf

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Diff for: CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,8 @@ Using the following categories, list your changes in this order:
336336

337337
- Support for IDOM within the Django
338338

339-
[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.3.1...HEAD
339+
[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.3.2...HEAD
340+
[3.3.2]: https://github.com/reactive-python/reactpy-django/compare/3.3.1...3.3.2
340341
[3.3.1]: https://github.com/reactive-python/reactpy-django/compare/3.3.0...3.3.1
341342
[3.3.0]: https://github.com/reactive-python/reactpy-django/compare/3.2.1...3.3.0
342343
[3.2.1]: https://github.com/reactive-python/reactpy-django/compare/3.2.0...3.2.1

Diff for: src/reactpy_django/__init__.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from reactpy_django import checks, components, decorators, hooks, types, utils
66
from reactpy_django.websocket.paths import REACTPY_WEBSOCKET_PATH
77

8-
__version__ = "3.3.1"
8+
__version__ = "3.3.2"
99
__all__ = [
1010
"REACTPY_WEBSOCKET_PATH",
1111
"hooks",
@@ -15,9 +15,9 @@
1515
"utils",
1616
"checks",
1717
]
18-
# Built-in asyncio event loops can create `assert f is self._write_fut` exceptions
19-
# while we are using our backhaul thread with Uvicorn, so we use this patch to fix this.
20-
# This also resolves jittery rendering behaviors within Daphne. Can be demonstrated
21-
# using our "Renders Per Second" test page.
18+
19+
# Fixes bugs with REACTPY_BACKHAUL_THREAD + built-in asyncio event loops.
20+
# Previously, Uvicorn could generate `assert f is self._write_fut` exceptions, and Daphne
21+
# had jittery rendering behaviors. Demonstrated using our "Renders Per Second" test page.
2222
with contextlib.suppress(ValueError):
2323
nest_asyncio.apply()

0 commit comments

Comments
 (0)