From 69d61d0b2fa4ee880038fd44ab48ed651dadb0d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20=C5=A0upienis?= Date: Thu, 8 Oct 2020 19:15:08 +0300 Subject: [PATCH] update changelog & version --- changelog.rst | 9 ++++++++- src/watchdog/version.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/changelog.rst b/changelog.rst index ded4e9e6d..25815dc8b 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,10 +3,17 @@ Changelog --------- +0.10.5 +~~~~~~ + +2020-xx-xx • `full history `__ + +- [inotify] Add events for IN_WRITE_CLOSE and IN_NOWRITE_CLOSE (`#690 `) + 0.10.4 ~~~~~~ -2020-xx-xx • `full history `__ +2020-10-08 • `full history `__ - Add logger parameter for the LoggingEventHandler (`#676 `_) - Replace mutable default arguments with ``if None`` implementation (`#677 `_) diff --git a/src/watchdog/version.py b/src/watchdog/version.py index fed8349c6..973beeb35 100644 --- a/src/watchdog/version.py +++ b/src/watchdog/version.py @@ -21,7 +21,7 @@ # ``docs/source/global.rst.inc`` file as well. VERSION_MAJOR = 0 VERSION_MINOR = 10 -VERSION_BUILD = 4 +VERSION_BUILD = 5 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = "%d.%d.%d" % VERSION_INFO