-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCHANGELOG
49 lines (36 loc) · 1.08 KB
/
CHANGELOG
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
-------------
Version 0.4.1
-------------
* Fix total processed -> ConConovaloff
* Fix unregister child -> ConConovaloff
-------------
Version 0.4.0
-------------
* Abstracted the polling layer due to issues with select.poll on OS X
(https://github.com/crustymonkey/py-prefork-server/issues/8 thanks Abai)
The best poller for the system this is running on is now automatically
selected (epoll on modern linux, kqueue on BSD/OS X, etc.)
* Updated documentation to reflect changes with PEP 8 compliance
* Fixed a bug in the example code
* Other minor fixes
-------------
Version 0.3.0
-------------
* Fixed curState naming bug (thanks cosminbasca!)
* Added support for SO_REUSEPORT
-------------
Version 0.2.1
-------------
* Added *args and **kwargs options for child class initialization (cosminbasca)
-------------
Version 0.2.0
-------------
* Changed the entire API for PEP 8 compliance (mostly) (cosminbasca)
-------------
Version 0.1.5
-------------
* Changed the socket bind hooks to be called during __init__ (cosminbasca)
-------------
Version 0.1.1
-------------
* Initial release