From d691038aea9054709457fbb0923863bdbc124a81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Tue, 4 May 2021 14:49:46 +0200 Subject: [PATCH] Release 2.1.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 1ac6e300a..cc8445aa3 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,15 +3,15 @@ Changelog --------- -2.0.4 +2.1.0 ~~~~~ -2021-0x-xx • `full history `__ +2021-05-04 • `full history `__ - [inotify] Simplify ``libc`` loading (`#776 `_) - [mac] Add support for non-recursive watches in FSEventsEmitter (`#779 `_) -- Add support for `--debug-force-*` arguments to `watchmedo tricks` (`#781 `_) -- Thanks to our beloved contributors: @CCP-Aporia, @aodj, @UnitedMarsupials +- [whatchemdo] Add support for ``--debug-force-*`` arguments to ``tricks`` (`#781 `_) +- Thanks to our beloved contributors: @CCP-Aporia, @aodj, @UnitedMarsupials, @BoboTiG 2.0.3 diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index ac7d9e670..60f5c5bcd 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.0.4 +.. |project_version| replace:: 2.1.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 00a9ef82c..663f26ec2 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 = 0 -VERSION_BUILD = 4 +VERSION_MINOR = 1 +VERSION_BUILD = 0 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = "%d.%d.%d" % VERSION_INFO