Skip to content

v3.3.0 #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions src/reactpy_django/__init__.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down