From d83f4c307c66932fd74f37755947648378ddfd8c Mon Sep 17 00:00:00 2001 From: olzhasar Date: Wed, 28 Aug 2024 22:35:12 +0500 Subject: [PATCH] Bump version 0.4.2 -> 0.4.3 --- CHANGELOG.md | 6 ++++++ docs/conf.py | 2 +- pyproject.toml | 2 +- pytest_watcher/constants.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d40a9e7..2218c16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.4.3] - 2024-08-28 + +### Fixes + +- Fix watchdog 5.x compatibility issue + ## [0.4.2] - 2024-04-01 ### Fixes diff --git a/docs/conf.py b/docs/conf.py index 5066de7..e64565e 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.2" +release = "v0.4.3" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 56195a7..2c0c805 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-watcher" -version = "0.4.2" +version = "0.4.3" 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 0d22e77..64d6ca5 100644 --- a/pytest_watcher/constants.py +++ b/pytest_watcher/constants.py @@ -1,4 +1,4 @@ -VERSION = "0.4.2" +VERSION = "0.4.3" DEFAULT_DELAY = 0.2 LOOP_DELAY = 0.1