From 6c1c96a249baecb9c0dce621947b9bd531ba08aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Fri, 20 Dec 2019 17:38:10 +0100 Subject: [PATCH] Release 0.10.0 --- README.rst | 2 +- changelog.rst | 2 +- src/watchdog/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 06ae5a856..372eeba2b 100755 --- a/README.rst +++ b/README.rst @@ -134,7 +134,7 @@ Install from source: $ python -m pip install -e . # or to install the watchmedo utility: - $ python -m pip install -e .[watchmedo] + $ python -m pip install -e ".[watchmedo]" Installation Caveats diff --git a/changelog.rst b/changelog.rst index 4cb688ad9..0eefbfcfd 100644 --- a/changelog.rst +++ b/changelog.rst @@ -6,7 +6,7 @@ Changelog 0.10.0 ~~~~~~ -unreleased • `full history `__ +2019-12-20 • `full history `__ Breaking Changes ================ diff --git a/src/watchdog/version.py b/src/watchdog/version.py index 295497c89..4fb61370e 100644 --- a/src/watchdog/version.py +++ b/src/watchdog/version.py @@ -20,7 +20,7 @@ # When updating this version number, please update the # ``docs/source/global.rst.inc`` file as well. VERSION_MAJOR = 0 -VERSION_MINOR = 9 +VERSION_MINOR = 10 VERSION_BUILD = 0 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = "%d.%d.%d" % VERSION_INFO