From 4f83d701f05c446c909fec79b44a7a87062b7378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Thu, 23 Feb 2023 21:31:49 +0100 Subject: [PATCH] Version 2.3.0 --- changelog.rst | 12 ++++++------ docs/source/global.rst.inc | 2 +- src/watchdog/version.py | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/changelog.rst b/changelog.rst index e7b5a010..4be3ca70 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,16 +3,16 @@ Changelog --------- -2.2.2 +2.3.0 ~~~~~ -2023-xx-xx • `full history `__ +2023-02-23 • `full history `__ -- [inotify] Add support for ``IN_OPEN`` events: a ``FileOpenedEvent`` event will be fired. (`#941 `__) -- [watchmedo] Add optional event debouncing for ``auto-restart``, only restarting once if many events happen in quick succession (`#940 `__) +- [inotify] Add support for ``IN_OPEN`` events: a ``FileOpenedEvent`` event will be fired (`#941 `__) +- [watchmedo] Add optional event debouncing for ``auto-restart``, only restarting once if many events happen in quick succession (``--debounce-interval``) (`#940 `__) - [watchmedo] Exit gracefully on ``KeyboardInterrupt`` exception (Ctrl+C) (`#945 `__) -- [watchmedo] Add option to not auto-restart the command after it exits. (`#946 `__) -- Thanks to our beloved contributors: @BoboTiG, @dstaple, @taleinat +- [watchmedo] Add option to not auto-restart the command after it exits (``--no-restart-on-command-exit``) (`#946 `__) +- Thanks to our beloved contributors: @BoboTiG, @dstaple, @taleinat, @cernekj 2.2.1 ~~~~~ diff --git a/docs/source/global.rst.inc b/docs/source/global.rst.inc index f49c73b7..74a61109 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-2023 Google, Inc & contributors. .. |project_name| replace:: ``watchdog`` -.. |project_version| replace:: 2.2.2 +.. |project_version| replace:: 2.3.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 07975908..1bdbe789 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 = 2 -VERSION_BUILD = 2 +VERSION_MINOR = 3 +VERSION_BUILD = 0 VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD) VERSION_STRING = "%d.%d.%d" % VERSION_INFO