Skip to content

Commit

Permalink
3.3.2 Version Bump (#171)
Browse files Browse the repository at this point in the history
Forgot to bump the `django-reactpy` version in the previous PR.
  • Loading branch information
Archmonger authored Aug 14, 2023
1 parent b058b9e commit 88acbaf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions src/reactpy_django/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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()

0 comments on commit 88acbaf

Please sign in to comment.