Skip to content

Commit 93ff1da

Browse files
committed
v0.8.0
1 parent 9c84dc5 commit 93ff1da

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

changelog.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
API changes
3+
-----------
4+
5+
0.8.0
6+
++++++
7+
8+
- ``DirectorySnapshot``: methods returning internal stat info replaced by
9+
``mtime``, ``inode`` and ``path`` methods.
10+
- ``DirectorySnapshot``:``walker_callback`` parameter deprecated.

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.
66
.. |project_name| replace:: ``watchdog``
7-
.. |project_version| replace:: 0.7.1
7+
.. |project_version| replace:: 0.8.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
@@ -20,8 +20,8 @@
2020
# When updating this version number, please update the
2121
# ``docs/source/global.rst.inc`` file as well.
2222
VERSION_MAJOR = 0
23-
VERSION_MINOR = 7
24-
VERSION_BUILD = 1
23+
VERSION_MINOR = 8
24+
VERSION_BUILD = 0
2525
VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD)
2626
VERSION_STRING = "%d.%d.%d" % VERSION_INFO
2727

0 commit comments

Comments
 (0)