Skip to content

Commit

Permalink
Bump version 0.4.0 -> 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
olzhasar committed Feb 6, 2024
1 parent 93dec6c commit ac8a7f0
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.4.1] - 2024-02-06

### Fixes

- Fix termios, tty import issue on Windows

## [0.4.0] - 2024-02-06

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Example:
- Uses native system monitoring API instead of polling on supported systems (see [watchdog documentation](https://python-watchdog.readthedocs.io/en/stable/installation.html#supported-platforms-and-caveats))
- Listens for new file, delete file, change and move events
- Runs your tests with latest changes in case of post-processing events (see [delay](#delay))
- Has interactive mode with handy keyboard shortcuts
- Has an interactive mode with handy keyboard shortcuts (Currently only available on POSIX systems)

### What about pytest-watch

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.4.0"
release = "v0.4.1"

# -- 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.4.0"
version = "0.4.1"
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/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "0.4.0"
VERSION = "0.4.1"

DEFAULT_DELAY = 0.2
LOOP_DELAY = 0.1

0 comments on commit ac8a7f0

Please sign in to comment.