From da09c060a007fe7fddde27592e4f63ae1e8697bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Mon, 20 Mar 2023 10:06:33 +0100 Subject: [PATCH] Release 3.0.0 --- .gitignore | 1 + changelog.rst | 14 ++++++++++---- docs/source/global.rst.inc | 2 +- src/watchdog/version.py | 6 +++--- 4 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 6d1b78d61..8d7ae16e7 100644 --- a/.gitignore +++ b/.gitignore @@ -34,6 +34,7 @@ nbproject/ # Generated by tests. .coverage +.coverage.* htmlcov/ .tox/ .cache/ diff --git a/changelog.rst b/changelog.rst index 614b801e6..269661f08 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,14 +3,20 @@ Changelog --------- -2.3.2 +3.0.0 ~~~~~ -2023-xx-xx • `full history `__ +2023-03-20 • `full history `__ - 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 `__) +- [ci] Lots of improvements +- [inotify] Return from ``InotifyEmitter.queue_events()`` if not launched when thread is inactive (`#963 `__) +- [tests] Stability improvements +- [utils] Remove handling of ``threading.Event.isSet`` spelling (`#962 `__) +- [watchmedo] Fixed tricks YAML generation (`#965 `__) +- Thanks to our beloved contributors: @kurtmckee, @altendky, @agroszer, @BoboTiG 2.3.1 ~~~~~ diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index 1b84dcb93..01742cd86 100644 --- a/docs/source/global.rst.inc +++ b/docs/source/global.rst.inc @@ -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 diff --git a/src/watchdog/version.py b/src/watchdog/version.py index d0161a1a9..2b82faef9 100644 --- a/src/watchdog/version.py +++ b/src/watchdog/version.py @@ -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}"