diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ef5c83..5478512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.4.1] - 2024-02-06 + +### Fixes + +- Fix termios, tty import issue on Windows + ## [0.4.0] - 2024-02-06 ### Features diff --git a/README.md b/README.md index b6b8f2a..21ed645 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Example: - Uses native system monitoring API instead of polling on supported systems (see [watchdog documentation](https://python-watchdog.readthedocs.io/en/stable/installation.html#supported-platforms-and-caveats)) - Listens for new file, delete file, change and move events - Runs your tests with latest changes in case of post-processing events (see [delay](#delay)) -- Has interactive mode with handy keyboard shortcuts +- Has an interactive mode with handy keyboard shortcuts (Currently only available on POSIX systems) ### What about pytest-watch diff --git a/docs/conf.py b/docs/conf.py index ef533bc..9c6c3f5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "pytest-watcher" copyright = "2023, Olzhas Arystanov" author = "Olzhas Arystanov" -release = "v0.4.0" +release = "v0.4.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 16b86db..f50e5b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-watcher" -version = "0.4.0" +version = "0.4.1" description = "Automatically rerun your tests on file modifications" authors = ["Olzhas Arystanov "] license = "MIT" diff --git a/pytest_watcher/constants.py b/pytest_watcher/constants.py index 721cf36..e98f6c7 100644 --- a/pytest_watcher/constants.py +++ b/pytest_watcher/constants.py @@ -1,4 +1,4 @@ -VERSION = "0.4.0" +VERSION = "0.4.1" DEFAULT_DELAY = 0.2 LOOP_DELAY = 0.1