diff --git a/NEWS.rst b/NEWS.rst index f597ee4..9738bad 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -4,7 +4,13 @@ Changelog unreleased ---------- +2024.09.03 - 2024-09-03 +----------------------- + * Fix support for Python 3.9. +* Fix running ``sphinx-autobuild`` via entry point scripts. +* Run ``sphinx-build`` in a subprocess to mitigate autdoc issues. +* Support the ``-M`` 'make mode' option for ``sphinx-build``. 2024.04.16 - 2024-04-16 ----------------------- diff --git a/sphinx_autobuild/__init__.py b/sphinx_autobuild/__init__.py index 343ac3a..4bc0a25 100644 --- a/sphinx_autobuild/__init__.py +++ b/sphinx_autobuild/__init__.py @@ -1,3 +1,3 @@ """Rebuild Sphinx documentation on changes, with hot reloading in the browser.""" -__version__ = "2024.04.16" +__version__ = "2024.09.03"