diff --git a/NEWS.rst b/NEWS.rst index b90e0ec..ae75722 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -4,6 +4,13 @@ Changelog unreleased ---------- +2024.09.19 - 2024-09-19 +----------------------- + +* Fix path filtering on Windows by normalising path separators. +* Filter various directories by default (``.git``, ``venv``, etc). +* Serve the correct directory when using make mode (``-M``). + 2024.09.18 - 2024-09-18 ----------------------- diff --git a/sphinx_autobuild/__init__.py b/sphinx_autobuild/__init__.py index 0c0397c..998785c 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.09.18" +__version__ = "2024.09.19"