Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG committed Mar 20, 2023
1 parent 9fc1ce2 commit da09c06
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ nbproject/

# Generated by tests.
.coverage
.coverage.*
htmlcov/
.tox/
.cache/
Expand Down
14 changes: 10 additions & 4 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@
Changelog
---------

2.3.2
3.0.0
~~~~~

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

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

2.3.1
~~~~~
Expand Down
2 changes: 1 addition & 1 deletion docs/source/global.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.. |author_email| replace:: yesudeep@gmail.com
.. |copyright| replace:: Copyright 2012-2023 Google, Inc & contributors.
.. |project_name| replace:: ``watchdog``
.. |project_version| replace:: 2.3.2
.. |project_version| replace:: 3.0.0

.. _issue tracker: https://github.com/gorakhargosh/watchdog/issues
.. _code repository: https://github.com/gorakhargosh/watchdog
Expand Down
6 changes: 3 additions & 3 deletions src/watchdog/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

# When updating this version number, please update the
# ``docs/source/global.rst.inc`` file as well.
VERSION_MAJOR = 2
VERSION_MINOR = 3
VERSION_BUILD = 2
VERSION_MAJOR = 3
VERSION_MINOR = 0
VERSION_BUILD = 0
VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD)
VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"

Expand Down

0 comments on commit da09c06

Please sign in to comment.