Skip to content

Commit

Permalink
Bump version 0.2.6 -> 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olzhasar committed Jun 2, 2023
1 parent 8fbc4b7 commit 2fbcf73
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <o.arystanov@gmail.com>"]
license = "MIT"
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pytest_watcher/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.6"
__version__ = "0.3.0"

from .watcher import run

Expand Down
2 changes: 1 addition & 1 deletion tests/test_pytest_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


def test_version():
assert __version__ == "0.2.6"
assert __version__ == "0.3.0"


@pytest.fixture(autouse=True)
Expand Down

0 comments on commit 2fbcf73

Please sign in to comment.