diff --git a/changelog.rst b/changelog.rst index 780bc3f4..9f1918d0 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,13 +3,21 @@ Changelog --------- +4.0.2 (dev) +~~~~~~~~~~~ + +2024-xx-xx • `full history `__ + +- +- Thanks to our beloved contributors: @ + 4.0.1 ~~~~~ 2024-05-23 • `full history `__ - [inotify] Fix missing ``event_filter`` for the full emitter (`#1032 `__) -- Thanks to our beloved contributors: @mraspaud +- Thanks to our beloved contributors: @mraspaud, @BoboTiG 4.0.0 ~~~~~ diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index d0327311..59d46c6d 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-2024 Google, Inc & contributors. .. |project_name| replace:: ``watchdog`` -.. |project_version| replace:: 4.0.1 +.. |project_version| replace:: 4.0.2 .. _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 843ed9c5..760a7246 100644 --- a/src/watchdog/version.py +++ b/src/watchdog/version.py @@ -20,7 +20,7 @@ # ``docs/source/global.rst.inc`` file as well. VERSION_MAJOR = 4 VERSION_MINOR = 0 -VERSION_BUILD = 1 +VERSION_BUILD = 2 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"