diff --git a/.readthedocs.yml b/.readthedocs.yml index 099d2803..79dbf642 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -13,7 +13,7 @@ build: # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py - builder: dirhtml + builder: html fail_on_warning: true # Optionally set the version of Python and requirements required to build your docs diff --git a/CHANGES.rst b/CHANGES.rst index e9c73c78..09339ee3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,17 @@ Flask-Security Changelog Here you can see the full list of changes between each Flask-Security release. +Version 5.4.2 +------------- + +Released xxx + +Fixes ++++++ +- (:issue:`946`) OpenAPI spec missing. +- (:pr:`945`) Doc fixes (e-goto) +- (:pr:`941`) Update ES/IT translations (gissimo) + Version 5.4.0 & 5.4.1 ---------------------- diff --git a/docs/index.rst b/docs/index.rst index d25926ff..8e44f68d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -79,6 +79,10 @@ Customizing and Usage Patterns API --- + `OpenApi Spec`_ + + +.. _OpenApi Spec: _static/openapi_view.html .. toctree:: :maxdepth: 2 diff --git a/flask_security/__init__.py b/flask_security/__init__.py index 299a3067..9d86d855 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -136,4 +136,4 @@ ) from .webauthn_util import WebauthnUtil -__version__ = "5.4.1" +__version__ = "5.4.2" diff --git a/tox.ini b/tox.ini index fd7c400f..ed8408e5 100644 --- a/tox.ini +++ b/tox.ini @@ -153,7 +153,7 @@ deps = jinja2 skip_install = true commands = - pybabel extract --version 5.4.1 --keyword=_fsdomain --project=Flask-Security \ + pybabel extract --version 5.4.2 --keyword=_fsdomain --project=Flask-Security \ -o flask_security/translations/flask_security.pot \ --msgid-bugs-address=jwag956@github.com --mapping-file=babel.ini \ --add-comments=NOTE flask_security