Skip to content

Commit

Permalink
Bump version 0.3.1 -> 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
olzhasar committed Jun 7, 2023
1 parent f217dd4 commit 78dc24c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 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.2] - 2023-06-08

### Features

- Add `--version` cli command

### Changes

- Fix main loop delay

## [0.3.1] - 2023-06-03

### Features
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-watcher"
version = "0.3.1"
version = "0.3.2"
description = "Automatically rerun your tests on file modifications"
authors = ["Olzhas Arystanov <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pytest_watcher/watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from watchdog.observers import Observer
from watchdog.utils.patterns import match_any_paths

VERSION = "0.3.1"
VERSION = "0.3.2"
DEFAULT_DELAY = 0.2
LOOP_DELAY = 0.1

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


def test_version():
assert __version__ == "0.3.1"
assert __version__ == "0.3.2"


@pytest.fixture(autouse=True)
Expand Down

0 comments on commit 78dc24c

Please sign in to comment.