From 68ef6242b48e8013fd5e8ba6a969dc88fa2faa2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Sun, 15 May 2022 14:35:34 +0200 Subject: [PATCH] Bump the version to 2.1.9 --- 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 79637ec4..011fb400 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,6 +3,14 @@ Changelog --------- +Unreleased +~~~~~~~~~~ + +2022-xx-xx • `full history `__ + +- +- Thanks to our beloved contributors: @ + 2.1.8 ~~~~~ diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index 29b6f204..6746dd6b 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.8 +.. |project_version| replace:: 2.1.9 .. _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 14986666..e4ea4178 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 = 2 VERSION_MINOR = 1 -VERSION_BUILD = 8 +VERSION_BUILD = 9 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = "%d.%d.%d" % VERSION_INFO