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