From 5c8f620d82575058f31e7c6a523617c48e5a927f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Wed, 7 Feb 2024 00:30:44 +0100 Subject: [PATCH] Revert "Bump the version" This reverts commit df07c90ffee61e05448733aa1e205b46c116341a. --- changelog.rst | 8 -------- docs/source/global.rst.inc | 2 +- src/watchdog/version.py | 2 +- 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/changelog.rst b/changelog.rst index 9d724065..1c39f0d8 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,14 +3,6 @@ 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 d0327311..9572efe0 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.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 843ed9c5..6e050201 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 = 0 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"