From ceeead668a5e93b471d0c0dd3eb561a4ec5aba13 Mon Sep 17 00:00:00 2001 From: Mark Bakhit Date: Sat, 26 Aug 2023 21:23:50 -0700 Subject: [PATCH] v3.5.0 (#179) --- .mailmap | 2 ++ CHANGELOG.md | 9 +++++++-- mkdocs.yml | 1 + src/reactpy_django/__init__.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 .mailmap diff --git a/.mailmap b/.mailmap new file mode 100644 index 00000000..1e68fb67 --- /dev/null +++ b/.mailmap @@ -0,0 +1,2 @@ +# .mailmap +Mark Bakhit <16909269+archmonger@users.noreply.github.com> diff --git a/CHANGELOG.md b/CHANGELOG.md index da060bbd..f41b7389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,10 @@ Using the following categories, list your changes in this order: ## [Unreleased] +- Nothing (yet)! + +## [3.5.0] - 2023-08-26 + ### Added - More customization for reconnection behavior through new settings! @@ -49,8 +53,8 @@ Using the following categories, list your changes in this order: - Prettier websocket URLs for components that do not have sessions. - Template tag will now only validate `args`/`kwargs` if `settings.py:DEBUG` is enabled. - Bumped the minimum `@reactpy/client` version to `0.3.1` +- Bumped the minimum Django version to `4.2`. - Use TypeScript instead of JavaScript for this repository. -- Bumped minimum Django version to `4.2`. - Note: ReactPy-Django will continue bumping minimum Django requirements to versions that increase async support. This "latest-only" trend will continue until Django has all async features that ReactPy benefits from. After this point, ReactPy-Django will begin supporting all maintained Django versions. ### Removed @@ -383,7 +387,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.4.0...HEAD +[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.5.0...HEAD +[3.5.0]: https://github.com/reactive-python/reactpy-django/compare/3.4.0...3.5.0 [3.4.0]: https://github.com/reactive-python/reactpy-django/compare/3.3.2...3.4.0 [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 diff --git a/mkdocs.yml b/mkdocs.yml index e5b08921..ae5129bc 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -103,6 +103,7 @@ watch: - mkdocs.yml - README.md - CHANGELOG.md + - .mailmap site_name: ReactPy-Django site_author: Archmonger diff --git a/src/reactpy_django/__init__.py b/src/reactpy_django/__init__.py index 7458595f..d5719f97 100644 --- a/src/reactpy_django/__init__.py +++ b/src/reactpy_django/__init__.py @@ -8,7 +8,7 @@ REACTPY_WEBSOCKET_ROUTE, ) -__version__ = "3.4.0" +__version__ = "3.5.0" __all__ = [ "REACTPY_WEBSOCKET_PATH", "REACTPY_WEBSOCKET_ROUTE",