Skip to content

Commit 2fbcf73

Browse files
committed
Bump version 0.2.6 -> 0.3.0
1 parent 8fbc4b7 commit 2fbcf73

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [0.3.0] - 2023-06-03
2+
3+
### Features
4+
5+
- 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
6+
7+
### Changes
8+
9+
- Reduce default invocation delay form 0.5 to 0.2
10+
111
## [0.2.6] - 2022-12-11
212

313
### Features

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pytest-watcher"
3-
version = "0.2.6"
3+
version = "0.3.0"
44
description = "Automatically rerun your tests on file modifications"
55
authors = ["Olzhas Arystanov <[email protected]>"]
66
license = "MIT"
@@ -9,7 +9,7 @@ homepage = "https://github.com/olzhasar/pytest-watcher"
99
repository = "https://github.com/olzhasar/pytest-watcher"
1010
keywords = ["pytest", "watch", "watcher"]
1111
classifiers = [
12-
"Development Status :: 3 - Alpha",
12+
"Development Status :: 4 - Beta",
1313
"Framework :: Pytest",
1414
"Intended Audience :: Developers",
1515
"Operating System :: OS Independent",

pytest_watcher/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.6"
1+
__version__ = "0.3.0"
22

33
from .watcher import run
44

tests/test_pytest_watcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
def test_version():
14-
assert __version__ == "0.2.6"
14+
assert __version__ == "0.3.0"
1515

1616

1717
@pytest.fixture(autouse=True)

0 commit comments

Comments
 (0)