Skip to content

Commit 7d651ac

Browse files
committed
Version 4.0.0
1 parent 6cdf07e commit 7d651ac

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Changelog
44
---------
55

6-
3.0.1
6+
4.0.0
77
~~~~~
88

9-
2023-xx-xx • `full history <https://github.com/gorakhargosh/watchdog/compare/v3.0.0...HEAD>`__
9+
2024-02-06 • `full history <https://github.com/gorakhargosh/watchdog/compare/v3.0.0...v4.0.0>`__
1010

1111
- Drop support for Python 3.7.
1212
- Add support for Python 3.12.

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
PROJECT_NAME = "watchdog"
2525
AUTHOR_NAME = "Yesudeep Mangalapilly and contributors"
26-
COPYRIGHT = "2010-2023, " + AUTHOR_NAME
26+
COPYRIGHT = f"2010-2024, {AUTHOR_NAME}"
2727

2828

2929
# -- General configuration -----------------------------------------------------

docs/source/global.rst.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
.. |author_name| replace:: Yesudeep Mangalapilly
44
.. |author_email| replace:: [email protected]
5-
.. |copyright| replace:: Copyright 2012-2023 Google, Inc & contributors.
5+
.. |copyright| replace:: Copyright 2012-2024 Google, Inc & contributors.
66
.. |project_name| replace:: ``watchdog``
7-
.. |project_version| replace:: 3.0.1
7+
.. |project_version| replace:: 4.0.0
88

99
.. _issue tracker: https://github.com/gorakhargosh/watchdog/issues
1010
.. _code repository: https://github.com/gorakhargosh/watchdog

src/watchdog/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
# When updating this version number, please update the
2020
# ``docs/source/global.rst.inc`` file as well.
21-
VERSION_MAJOR = 3
21+
VERSION_MAJOR = 4
2222
VERSION_MINOR = 0
23-
VERSION_BUILD = 1
23+
VERSION_BUILD = 0
2424
VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD)
2525
VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"
2626

0 commit comments

Comments
 (0)