Skip to content

Commit da09c06

Browse files
committed
Release 3.0.0
1 parent 9fc1ce2 commit da09c06

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ nbproject/
3434

3535
# Generated by tests.
3636
.coverage
37+
.coverage.*
3738
htmlcov/
3839
.tox/
3940
.cache/

changelog.rst

+10-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,20 @@
33
Changelog
44
---------
55

6-
2.3.2
6+
3.0.0
77
~~~~~
88

9-
2023-xx-xx • `full history <https://github.com/gorakhargosh/watchdog/compare/v2.3.1...HEAD>`__
9+
2023-03-20 • `full history <https://github.com/gorakhargosh/watchdog/compare/v2.3.1...v3.0.0>`__
1010

1111
- Drop support for Python 3.6.
12-
- [testing] watchdog is now PEP 561 compatible and is tested by mypy.
13-
- Thanks to our beloved contributors: @kurtmckee
12+
- ``watchdog`` is now PEP 561 compatible, and tested with ``mypy``
13+
- Fix missing ``>`` in ``FileSystemEvent.__repr__()`` (`#980 <https://github.com/gorakhargosh/watchdog/pull/980>`__)
14+
- [ci] Lots of improvements
15+
- [inotify] Return from ``InotifyEmitter.queue_events()`` if not launched when thread is inactive (`#963 <https://github.com/gorakhargosh/watchdog/pull/963>`__)
16+
- [tests] Stability improvements
17+
- [utils] Remove handling of ``threading.Event.isSet`` spelling (`#962 <https://github.com/gorakhargosh/watchdog/pull/962>`__)
18+
- [watchmedo] Fixed tricks YAML generation (`#965 <https://github.com/gorakhargosh/watchdog/pull/965>`__)
19+
- Thanks to our beloved contributors: @kurtmckee, @altendky, @agroszer, @BoboTiG
1420

1521
2.3.1
1622
~~~~~

docs/source/global.rst.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.. |author_email| replace:: [email protected]
55
.. |copyright| replace:: Copyright 2012-2023 Google, Inc & contributors.
66
.. |project_name| replace:: ``watchdog``
7-
.. |project_version| replace:: 2.3.2
7+
.. |project_version| replace:: 3.0.0
88

99
.. _issue tracker: https://github.com/gorakhargosh/watchdog/issues
1010
.. _code repository: https://github.com/gorakhargosh/watchdog

src/watchdog/version.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
# When updating this version number, please update the
2020
# ``docs/source/global.rst.inc`` file as well.
21-
VERSION_MAJOR = 2
22-
VERSION_MINOR = 3
23-
VERSION_BUILD = 2
21+
VERSION_MAJOR = 3
22+
VERSION_MINOR = 0
23+
VERSION_BUILD = 0
2424
VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD)
2525
VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"
2626

0 commit comments

Comments
 (0)