From aadb53f55b615b4e46ea0129cdc406fcfd3ad3b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Wed, 19 May 2021 10:27:48 +0200 Subject: [PATCH] Bump the version to 2.1.3 --- changelog.rst | 9 ++++++++- docs/source/global.rst.inc | 2 +- src/watchdog/version.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/changelog.rst b/changelog.rst index 39e50ffef..d51295b89 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,10 +3,17 @@ Changelog --------- +2.1.3 +~~~~~ + +2021-0x-xx • `full history `__ + +- Thanks to our beloved contributors: @ + 2.1.2 ~~~~~ -2021-xx-xx • `full history `__ +2021-05-19 • `full history `__ - [mac] Fix relative path handling for non-recursive watch. (`#797 `_) - [windows] On PyPy, events happening right after ``start()`` were missed. Add a workaround for that. (`#796 `_) diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index f66005289..8c8097975 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.2 +.. |project_version| replace:: 2.1.3 .. _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 f87b21c83..2e83ab231 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 = 2 +VERSION_BUILD = 3 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = "%d.%d.%d" % VERSION_INFO