From 6a4f1cf846e03c8701fcc53b9e910077b5824e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Fri, 27 Sep 2024 18:10:35 +0200 Subject: [PATCH] Bump the version --- changelog.rst | 8 ++++++++ docs/source/global.rst.inc | 2 +- src/watchdog/version.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/changelog.rst b/changelog.rst index 3573bab1..4546f7df 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,6 +3,14 @@ Changelog --------- +5.0.4-dev +~~~~~~~~~ + +2024-xx-xx • `full history `__ + +- +- Thanks to our beloved contributors: @BoboTiG, @ + 5.0.3 ~~~~~ diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index ba78f361..47ef98c3 100644 --- a/docs/source/global.rst.inc +++ b/docs/source/global.rst.inc @@ -4,7 +4,7 @@ .. |author_email| replace:: contact@tiger-222.fr .. |copyright| replace:: Copyright 2011-2024 Yesudeep Mangalapilly, Mickaël Schoentgen & contributors. .. |project_name| replace:: ``watchdog`` -.. |project_version| replace:: 5.0.3 +.. |project_version| replace:: 5.0.4 .. _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 2da71f1f..63746d3e 100644 --- a/src/watchdog/version.py +++ b/src/watchdog/version.py @@ -4,7 +4,7 @@ # ``docs/source/global.rst.inc`` file as well. VERSION_MAJOR = 5 VERSION_MINOR = 0 -VERSION_BUILD = 3 +VERSION_BUILD = 4 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"