12015-04-14: pyliblo 0.10.0
2
3  * New and improved documentation, built from docstrings using Sphinx.
4  * Add Server.add_bundle_handlers(), thanks to David Honour and Paul Weaver.
5  * Fix sending 64-bit values with Python 3 and on some 64-bit systems,
6    thanks to Sebastian Ramacher.
7  * Cython is now a mandatory build dependency. The generated liblo.c has
8    been removed from the release tarball.
9  * The minimum version of liblo required by pyliblo is now 0.27.
10
112014-09-16: pyliblo 0.9.2
12
13  * Add function Server.del_method(), thanks to a patch from Артём Попов.
14  * Use Python 3 compatible syntax in the send_osc and dump_osc scripts.
15    This also means that 2.6 is now the minimum supported Python version.
16  * Use setuptools if available, thanks to Chris Arndt.
17
182011-01-29: pyliblo 0.9.1
19
20  * Changed send functions to raise an IOError if sending failed (probably
21    most useful with TCP connections).
22  * Lots of code cleanup and deobfuscation.
23  * Included unit tests in release tarball.
24
252010-10-22: pyliblo 0.9.0
26
27  * Support Python 3.x. As a result, pyliblo can no longer be built with
28    Pyrex, and requires Cython >= 0.12 instead.
29  * Added free() method to Server and ServerThread classes.
30  * Added fileno() method to Server and ServerThread classes (thanks to
31    Edward George).
32  * Prefer read-only properties over getter methods (which still exist, but
33    are now deprecated).
34  * Added proper docstrings (copied from the HTML docs).
35  * The minimum version of liblo required by pyliblo is now 0.26.
36
372009-11-30: pyliblo 0.8.1
38
39  * Release the Python GIL inside Server.recv().
40  * Fixed a possible segfault when the error handler was called from the
41  * liblo server thread.
42
432009-09-13: pyliblo 0.8.0
44
45  * Changed license from GPL 2 to LGPL 2.1 (as did liblo in version 0.26).
46  * Added protocol parameter to the Server class. Among other things, this
47    allows TCP connections.
48  * The minumum version of liblo required by pyliblo is now 0.24.
49  * pyliblo can now be built with either Pyrex or Cython.
50
512009-01-19: pyliblo 0.7.2
52
53  * Fixed all compiler warnings properly in Pyrex, without patching the
54    generated C code.
55  * Return values of callback functions are no longer ignored, but handled
56    as in liblo.
57  * The send_osc script can now be run with an explicit type string,
58    instead of trying to determine the argument types automatically.
59
602008-08-03: pyliblo 0.7.1
61
62  * Added manpages for send_osc and dump_osc.
63
642008-03-03: pyliblo 0.7.0
65
66  * Fixed memory leaks, caused by failure to free() the result of
67    lo_server_get_url() and lo_address_get_url().
68  * Added parameter to Server.register_methods() to allow registering
69    functions of an object other than the server itself.
70  * Allow callback functions to have a variable number of arguments (*args).
71
722007-12-14: pyliblo 0.6.4
73
74  * Avoid creating circular references when using methods as callback
75    functions, which in some cases prevented the server object from being
76    deleted properly.
77
782007-08-10: pyliblo 0.6.3
79
80  * Patched the Pyrex-generated code to make it compile without warnings.
81  * Always build from the existing C source by default.
82
832007-07-29: pyliblo 0.6.2
84
85  * Minor code cleanup, hopefully not breaking anything.
86  * Somewhat faster conversion of blob data from and to Python lists.
87
882007-07-07: pyliblo 0.6.1
89
90  * Fixed a bug that caused the floats 0.0 and 1.0 to be sent as boolean.
91    Thanks to Jesse Chappell for the patch.
92
932007-05-20: pyliblo 0.6
94
95  * Added support for sending bundles, optionally with timestamps.
96  * Added previously unsupported OSC data types (timetag, midi, symbol,
97    true/false/nil/infinitum).
98  * New @make_method decorator.
99  * Various bugfixes.
100
1012007-04-28: pyliblo 0.5.1
102
103  * Fixed a stupid typo in Server.send().
104
1052007-04-26: pyliblo 0.5
106
107  * Simplified the way arguments are passed to callback functions. For the
108    server side, this release is therefore incompatible with previous
109    versions!
110  * Some more cleanup.
111
1122007-04-02: pyliblo 0.3
113
114  * Added class ServerThread for asynchronous dispatching of incoming
115    messages.
116
1172007-04-01: pyliblo 0.2
118
119  * Minor improvements.
120
1212007-02-20: pyliblo 0.1
122
123  * Initial release.
124