From eb968284dac661faf5e850d73cb2489c0442285a Mon Sep 17 00:00:00 2001 From: olzhasar Date: Sun, 11 Jun 2023 17:22:57 +0600 Subject: [PATCH] Bump version 0.3.2 -> 0.3.3 --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- pytest_watcher/constants.py | 2 +- tests/test_watcher.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ec8919..ab68bf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.3.3] - 2023-06-11 + +### Features + +- Configuring `pytest-watcher` via `pyproject.toml` file + ## [0.3.2] - 2023-06-08 ### Features diff --git a/pyproject.toml b/pyproject.toml index 17a18ab..bdf8c92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-watcher" -version = "0.3.2" +version = "0.3.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 d4cf5a3..155d24c 100644 --- a/pytest_watcher/constants.py +++ b/pytest_watcher/constants.py @@ -1,4 +1,4 @@ -VERSION = "0.3.2" +VERSION = "0.3.3" DEFAULT_DELAY = 0.2 LOOP_DELAY = 0.1 diff --git a/tests/test_watcher.py b/tests/test_watcher.py index cfb9875..61746f5 100644 --- a/tests/test_watcher.py +++ b/tests/test_watcher.py @@ -12,7 +12,7 @@ def test_version(): - assert __version__ == "0.3.2" + assert __version__ == "0.3.3" @pytest.fixture(autouse=True)