-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNEWS
82 lines (57 loc) · 2.36 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
======================
inotifyx Release Notes
======================
.. contents::
inotifyx 0.2.2 2014-08-25
=========================
* Added release file to MANIFEST.in. This fixes incorrect version number
reporting for release tarballs.
(Forest Bond)
inotifyx 0.2.1 2014-08-25
=========================
* Some reference counting bugs in get_events were fixed. This prevents leaking
memory while processing events.
(Henry Stern)
* A bug with memory allocation failure handling in get_events was fixed. This
prevents a segmentation fault under low memory conditions.
(Forest Bond)
* inotify events with zero-length name fields are now properly handled.
Previously, segmentation faults and other errors would have occurred if such
events were received.
(Forest Bond)
* A distutils manifest is now provided. Source code tarballs can now be
generated via setup.py, and this mechanism will be used to generate official
release tarballs.
(Forest Bond)
* The "download_url" distutils option is no longer specified. Release tarballs
will be available directly from PyPI. This is now required by pip.
(Forest Bond)
inotifyx 0.2.0 2011-07-09
=========================
* The distutils option "download_url" is now specified. This should fix
problems using pip, zc.buildout, and other tools that rely on PyPI for
package downloads to install inotifyx. Thanks to Dariusz Suchojad for
the report.
(Forest Bond)
* inotifyx is now distributed as a Python package instead of a few bare
modules. The "_inotifyx" C extension is now shipped as "inotifyx.binding".
This change should be backwards compatible with respect to imports since
the C extension did not directly implement public interfaces.
(Forest Bond)
* A __version__ attribute is now provided. This specifies the version
of the inotifyx library. Thanks to Jérôme Laheurte for the suggestion.
(Forest Bond)
inotifyx 0.1.2 2011-03-31
=========================
* Threads are now allowed during I/O operations. Thanks to Jean-Baptiste
Denis for the report and patch.
(Forest Bond)
inotifyx 0.1.1 2009-10-18
=========================
* Fix integer truncation of timeout argument in get_events. Thanks to Eric
Firing for the report and patch.
(Forest Bond)
inotifyx 0.1.0 2009-04-26
=========================
* Initial release.
(Forest Bond)