From 7773a257b24265ca323a4082f2f5be77731e9b9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Mon, 5 Dec 2022 12:06:40 +0100 Subject: [PATCH] Version 2.2.0 --- changelog.rst | 8 ++++---- docs/source/global.rst.inc | 2 +- src/watchdog/version.py | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/changelog.rst b/changelog.rst index b1b593c6c..142076af6 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,12 +3,12 @@ Changelog --------- -2.1.10 -~~~~~~ +2.2.0 +~~~~~ -2022-xx-xx • `full history `__ +2022-12-05 • `full history `__ -- [build] Wheels are now available for Python 3.11 +- [build] Wheels are now available for Python 3.11 (`#932 `__) - [documentation] HTML documentation builds are now tested for errors (`#902 `__) - [documentation] Fix typos here, and there (`#910 `__) - [fsevents2] The ``fsevents2`` observer is now deprecated (`#909 `__) diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index 5e063e4eb..140b7fff0 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 Google, Inc & contributors. .. |project_name| replace:: ``watchdog`` -.. |project_version| replace:: 2.1.10 +.. |project_version| replace:: 2.2.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 2379f7418..259beec54 100644 --- a/src/watchdog/version.py +++ b/src/watchdog/version.py @@ -19,8 +19,8 @@ # When updating this version number, please update the # ``docs/source/global.rst.inc`` file as well. VERSION_MAJOR = 2 -VERSION_MINOR = 1 -VERSION_BUILD = 10 +VERSION_MINOR = 2 +VERSION_BUILD = 0 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = "%d.%d.%d" % VERSION_INFO