From d8acb8a780a729b8e3a72b07366b8eac1822c561 Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Thu, 7 Sep 2023 02:56:49 -0700 Subject: [PATCH] v3.5.1 --- CHANGELOG.md | 6 ++++-- docs/overrides/main.html | 2 +- docs/src/assets/css/navbar.css | 1 + src/reactpy_django/__init__.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 577f67f6..c0c95928 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,7 @@ Using the following categories, list your changes in this order: -## [Unreleased] +## [3.5.1] - 2023-09-07 ### Added @@ -41,6 +41,7 @@ Using the following categories, list your changes in this order: ### Changed - The default postprocessor can now disabled by setting `REACTPY_DEFAULT_QUERY_POSTPROCESSOR` to `None`. +- Massive overhaul of docs styling. ## [3.5.0] - 2023-08-26 @@ -393,7 +394,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.5.0...HEAD +[unreleased]: https://github.com/reactive-python/reactpy-django/compare/3.5.1...HEAD +[3.5.1]: https://github.com/reactive-python/reactpy-django/compare/3.5.0...3.5.1 [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 diff --git a/docs/overrides/main.html b/docs/overrides/main.html index bc3074e6..c63ca9e7 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -13,7 +13,7 @@ {% endblock %} {% block outdated %} -You're not viewing the latest official release. +You're not viewing the latest release. Click here to go to latest. diff --git a/docs/src/assets/css/navbar.css b/docs/src/assets/css/navbar.css index 32347ccb..23e725e3 100644 --- a/docs/src/assets/css/navbar.css +++ b/docs/src/assets/css/navbar.css @@ -87,6 +87,7 @@ margin: 0; margin-right: 0.8rem; margin-left: 0.2rem; + flex-grow: 0; } .md-header__topic { position: relative; diff --git a/src/reactpy_django/__init__.py b/src/reactpy_django/__init__.py index d5719f97..3985fcf4 100644 --- a/src/reactpy_django/__init__.py +++ b/src/reactpy_django/__init__.py @@ -8,7 +8,7 @@ REACTPY_WEBSOCKET_ROUTE, ) -__version__ = "3.5.0" +__version__ = "3.5.1" __all__ = [ "REACTPY_WEBSOCKET_PATH", "REACTPY_WEBSOCKET_ROUTE",