Skip to content

Commit 0ef78b9

Browse files
committed
Set version to 4.0.0.
1 parent 0058071 commit 0ef78b9

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

AUTHORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ along with the following contributors:
1111
- Daniel Hahler ([@blueyed](https://github.com/blueyed))
1212
- Colton J. Provias ([@ColtonProvias](https://github.com/ColtonProvias))
1313
- Abhas Bhattacharya ([@bendtherules](https://github.com/bendtherules))
14+
- Lukasz Balcerzak ([@lukaszb](https://github.com/lukaszb))
1415

1516
[home]: README.md

CHANGES.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@ pytest-watch Changelog
22
======================
33

44

5+
Version 4.0.0 (2016-04-06)
6+
--------------------------
7+
8+
- Breaking change: Re-order `watch` arguments
9+
- Breaking change: Add parameterized `--spool` option for finer control and remove `--no-spool`
10+
- Breaking change: Remove `py.test.watch` console script
11+
- Enhancement: Report filesystem events on re-run (fixes [#39](https://github.com/joeyespo/pytest-watch/issues/39))
12+
- Enhancement: Allow `--ext=*` for watching any file type
13+
- Enhancement: Run pytest from main thread, send `KeyboardInterrupt` on filesystem events, and wait for pytest to terminate before running next iteration (fixes [#36](https://github.com/joeyespo/pytest-watch/issues/36))
14+
- Enhancement: Add `--pdb` option, forwarding to pytest
15+
- Enhancement: Add `--wait` option to wait for all tests to complete before re-running on filesystem events (fixes [#21](https://github.com/joeyespo/pytest-watch/issues/21))
16+
- Enhancement: Add `--afterrun` for running commands after pytest runs, regardless of whether it was interrupted ([#46](https://github.com/joeyespo/pytest-watch/pull/46) - thanks, [@blueyed][]! and fc471a457ae334e24422f939c04be25587d6d357)
17+
- Enhancement: Allow multiple `--ignore` args instead of one comma-separated list and forward them to pytest (fixes [#48](https://github.com/joeyespo/pytest-watch/issues/48))
18+
- Enhancement: Add `-V` as short version of `--version`
19+
- Enhancement: Add `--config` and include `<directory>` list in pytest args (fixes [#40](https://github.com/joeyespo/pytest-watch/issues/40))
20+
- Enhancement: Improve config collection debuggability
21+
- Bugfix: Fix config file collection on Python 2.6 and below ([#47](https://github.com/joeyespo/pytest-watch/pull/47) - thanks, [@lukaszb][]! and 7f1508d908a61ade36312219d2414445e5b05686)
22+
- Bugfix: Re-run on directory changes (fixes [#44](https://github.com/joeyespo/pytest-watch/issues/44))
23+
- Update LICENSE year
24+
- Update README
25+
- Cleanup
26+
27+
528
Version 3.10.0 (2016-02-12)
629
---------------------------
730

@@ -113,3 +136,4 @@ First public preview release.
113136
[@blueyed]: https://github.com/blueyed
114137
[@ColtonProvias]: https://github.com/ColtonProvias
115138
[@bendtherules]: https://github.com/bendtherules
139+
[@lukaszb]: https://github.com/lukaszb

pytest_watch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:license: MIT, see LICENSE for more details.
99
"""
1010

11-
__version__ = '3.10.0'
11+
__version__ = '4.0.0'
1212

1313

1414
from .command import main, doc, version

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def read(filename):
99

1010
setup(
1111
name='pytest-watch',
12-
version='3.10.0',
12+
version='4.0.0',
1313
description='Local continuous test runner with pytest and watchdog.',
1414
long_description=read('README.md'),
1515
author='Joe Esposito',

0 commit comments

Comments
 (0)