diff --git a/CHANGELOG.md b/CHANGELOG.md index e505a89..cba5083 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.3.5] - 2024-01-28 + +### Features + +- Add `--clear` flag to clear the terminal screen before each test run + ## [0.3.4] - 2023-06-24 ### Changes diff --git a/docs/conf.py b/docs/conf.py index 1ec94bd..443be70 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.3.4" +release = "v0.3.5" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index b0dc68f..d788a2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-watcher" -version = "0.3.4" +version = "0.3.5" 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 3670bc6..f907a9c 100644 --- a/pytest_watcher/constants.py +++ b/pytest_watcher/constants.py @@ -1,4 +1,4 @@ -VERSION = "0.3.4" +VERSION = "0.3.5" DEFAULT_DELAY = 0.2 LOOP_DELAY = 0.1 diff --git a/tests/test_watcher.py b/tests/test_watcher.py index 5f84b0f..5e8c628 100644 --- a/tests/test_watcher.py +++ b/tests/test_watcher.py @@ -12,7 +12,7 @@ def test_version(): - assert __version__ == "0.3.4" + assert __version__ == "0.3.5" @pytest.fixture(autouse=True)