Skip to content

Commit daf1232

Browse files
authored
v3.4.0 (#173)
1 parent 41641aa commit daf1232

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Diff for: CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,16 @@ Using the following categories, list your changes in this order:
3434

3535
## [Unreleased]
3636

37+
- Nothing (yet)!
38+
39+
## [3.4.0] - 2023-08-18
40+
3741
### Added
3842

3943
- **Distributed Computing:** ReactPy components can now optionally be rendered by a completely separate server!
4044
- `REACTPY_DEFAULT_HOSTS` setting can round-robin a list of ReactPy rendering hosts.
4145
- `host` argument has been added to the `component` template tag to force components to render on a specific host.
42-
- `reactpy_django.utils.register_component` function to manually register root components.
46+
- `reactpy_django.utils.register_component` function can manually register root components.
4347
- Useful if you have dedicated ReactPy rendering application(s) that do not use HTML templates.
4448

4549
### Changed
@@ -358,7 +362,8 @@ Using the following categories, list your changes in this order:
358362

359363
- Support for IDOM within the Django
360364

361-
[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.3.2...HEAD
365+
[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.4.0...HEAD
366+
[3.4.0]: https://github.com/reactive-python/reactpy-django/compare/3.3.2...3.4.0
362367
[3.3.2]: https://github.com/reactive-python/reactpy-django/compare/3.3.1...3.3.2
363368
[3.3.1]: https://github.com/reactive-python/reactpy-django/compare/3.3.0...3.3.1
364369
[3.3.0]: https://github.com/reactive-python/reactpy-django/compare/3.2.1...3.3.0

Diff for: src/reactpy_django/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
REACTPY_WEBSOCKET_ROUTE,
99
)
1010

11-
__version__ = "3.3.2"
11+
__version__ = "3.4.0"
1212
__all__ = [
1313
"REACTPY_WEBSOCKET_PATH",
1414
"REACTPY_WEBSOCKET_ROUTE",

0 commit comments

Comments
 (0)