Skip to content

Commit

Permalink
Bump version 0.3.4 -> 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
olzhasar committed Jan 28, 2024
1 parent 5b567ea commit a32e6c8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.3.5] - 2024-01-28

### Features

- Add `--clear` flag to clear the terminal screen before each test run

## [0.3.4] - 2023-06-24

### Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "pytest-watcher"
copyright = "2023, Olzhas Arystanov"
author = "Olzhas Arystanov"
release = "v0.3.4"
release = "v0.3.5"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
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.4"
version = "0.3.5"
description = "Automatically rerun your tests on file modifications"
authors = ["Olzhas Arystanov <o.arystanov@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pytest_watcher/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "0.3.4"
VERSION = "0.3.5"

DEFAULT_DELAY = 0.2
LOOP_DELAY = 0.1
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.4"
assert __version__ == "0.3.5"


@pytest.fixture(autouse=True)
Expand Down

0 comments on commit a32e6c8

Please sign in to comment.