From 2fe1609dd7e545b3bc02e4d026e42ef8629270b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Tue, 6 Feb 2024 23:10:20 +0100 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 1c39f0d8..9d724065 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,6 +3,14 @@ Changelog --------- +4.0.1 +~~~~~ + +2024-xx-xx • `full history `__ + +- +- Thanks to our beloved contributors: @ + 4.0.0 ~~~~~ diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index 9572efe0..d0327311 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.0 +.. |project_version| replace:: 4.0.1 .. _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 6e050201..843ed9c5 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 = 0 +VERSION_BUILD = 1 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"