From 4552a5ffc48c1183064102068ec531e3f350fbd2 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:09:58 +0100 Subject: [PATCH] Release 2024.09.19 --- NEWS.rst | 7 +++++++ sphinx_autobuild/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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"