Skip to content

Commit 4bddc32

Browse files
committed
Release 2.0.0
The major number bump is due to the loss of macOS 10.12 and older support.
1 parent 16d9010 commit 4bddc32

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

changelog.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
Changelog
44
---------
55

6-
1.0.3
6+
2.0.0
77
~~~~~
88

9-
202x-xx-xx • `full history <https://github.com/gorakhargosh/watchdog/compare/v1.0.2...master>`__
9+
2021-02-11 • `full history <https://github.com/gorakhargosh/watchdog/compare/v1.0.2...v2.0.0>`__
1010

1111
- Avoid deprecated ``PyEval_InitThreads`` on Python 3.7+ (`#746 <https://github.com/gorakhargosh/watchdog/pull/746>`_)
1212
- [inotify] Add support for ``IN_CLOSE_WRITE`` events. A ``FileCloseEvent`` event will be fired. Note that ``IN_CLOSE_NOWRITE`` events are not handled to prevent much noise. (`#184 <https://github.com/gorakhargosh/watchdog/pull/184>`_, `#245 <https://github.com/gorakhargosh/watchdog/pull/245>`_, `#280 <https://github.com/gorakhargosh/watchdog/pull/280>`_, `#313 <https://github.com/gorakhargosh/watchdog/pull/313>`_, `#690 <https://github.com/gorakhargosh/watchdog/pull/690>`_)
1313
- [inotify] Allow to stop the emitter multiple times (`#760 <https://github.com/gorakhargosh/watchdog/pull/760>`_)
1414
- [mac] Support coalesced filesystem events (`#734 <https://github.com/gorakhargosh/watchdog/pull/734>`_)
15-
- [mac] Drop support for OSX 10.12 and earlier (`#750 <https://github.com/gorakhargosh/watchdog/pull/750>`_)
15+
- [mac] Drop support for macOS 10.12 and earlier (`#750 <https://github.com/gorakhargosh/watchdog/pull/750>`_)
1616
- [mac] Fix an issue when renaming an item changes only the casing (`#750 <https://github.com/gorakhargosh/watchdog/pull/750>`_)
17-
- Thanks to our beloved contributors: @bstaletic, @lukassup, @ysard, @SamSchott, @CCP-Aporia
17+
- Thanks to our beloved contributors: @bstaletic, @lukassup, @ysard, @SamSchott, @CCP-Aporia, @BoboTiG
1818

1919

2020
1.0.2

docs/source/global.rst.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.. |author_email| replace:: [email protected]
55
.. |copyright| replace:: Copyright 2012 Google, Inc & contributors.
66
.. |project_name| replace:: ``watchdog``
7-
.. |project_version| replace:: 1.0.3
7+
.. |project_version| replace:: 2.0.0
88

99
.. _issue tracker: http://github.com/gorakhargosh/watchdog/issues
1010
.. _code repository: http://github.com/gorakhargosh/watchdog

src/watchdog/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
# When updating this version number, please update the
2020
# ``docs/source/global.rst.inc`` file as well.
21-
VERSION_MAJOR = 1
21+
VERSION_MAJOR = 2
2222
VERSION_MINOR = 0
23-
VERSION_BUILD = 3
23+
VERSION_BUILD = 0
2424
VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD)
2525
VERSION_STRING = "%d.%d.%d" % VERSION_INFO
2626

0 commit comments

Comments
 (0)