From 2fbcf738966515a09f981737edb5f2ec170ea01f Mon Sep 17 00:00:00 2001 From: olzhasar Date: Sat, 3 Jun 2023 05:17:59 +0600 Subject: [PATCH] Bump version 0.2.6 -> 0.3.0 --- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 4 ++-- pytest_watcher/__init__.py | 2 +- tests/test_pytest_watcher.py | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2798d9c..9b4e80f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.3.0] - 2023-06-03 + +### Features + +- Allow specifying custom file patterns and ignoring specific patterns via corresponding flags (`--patterns`, `--ignore-patterns`). Special thanks to @[@aptakhin](https://github.com/aptakhin) for the contribution + +### Changes + +- Reduce default invocation delay form 0.5 to 0.2 + ## [0.2.6] - 2022-12-11 ### Features diff --git a/pyproject.toml b/pyproject.toml index ebb3105..434ba97 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-watcher" -version = "0.2.6" +version = "0.3.0" description = "Automatically rerun your tests on file modifications" authors = ["Olzhas Arystanov "] license = "MIT" @@ -9,7 +9,7 @@ homepage = "https://github.com/olzhasar/pytest-watcher" repository = "https://github.com/olzhasar/pytest-watcher" keywords = ["pytest", "watch", "watcher"] classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Framework :: Pytest", "Intended Audience :: Developers", "Operating System :: OS Independent", diff --git a/pytest_watcher/__init__.py b/pytest_watcher/__init__.py index 8c70fb6..d56c178 100644 --- a/pytest_watcher/__init__.py +++ b/pytest_watcher/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.6" +__version__ = "0.3.0" from .watcher import run diff --git a/tests/test_pytest_watcher.py b/tests/test_pytest_watcher.py index a26efcf..c9420ed 100644 --- a/tests/test_pytest_watcher.py +++ b/tests/test_pytest_watcher.py @@ -11,7 +11,7 @@ def test_version(): - assert __version__ == "0.2.6" + assert __version__ == "0.3.0" @pytest.fixture(autouse=True)