File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change
1
+ python-synapse (0.2-1) unstable; urgency=low
2
+
3
+ * clearer __repr__ return for ZMQNode classes
4
+ * first draft of a EventPoller
5
+ * improved handling of unknown node
6
+ * bumped dependency version (pyzmq/zeromq1 > strictly= 2.1.0)
7
+ * fix local import of messages, use an absolute import path
8
+ * removed deprecated :class:`ZMQPoller`
9
+ * removed old mechanism where we were mimicking what gevent-zeromq now do for us
10
+ * provides an interface to add multiples periodical handler
11
+ * put the pid in logger name for everything that can be present in different processes with the same name
12
+ * use gevent-zeromq to make zeromq sockets 'gevent-aware'
13
+ * removed now unused dependency on OrderedDict
14
+ * updated documentation
15
+ * rewrite the way greenlets/nodes are spawned
16
+ * bump version of pyzmq to >=2.1.1 and add dependency on gevent_zeromq
17
+ * just a small typo in docstring
18
+ * reintroduce the `timeout`, `periodic_handler` for backward compatibility
19
+ * tests: made them use StreamHandler to output on stderr, and few slight changes
20
+ * add test with two actors that does ping/pong, and a WSGIServer serving HTTP in the same process
21
+
22
+ -- Thomas Meson <zllak@hycik.org> Wed, 27 Apr 2011 10:57:15 +0200
23
+
1
24
python-synapse (0.1-1) unstable; urgency=low
2
25
3
26
* Initial release
Original file line number Diff line number Diff line change 45
45
# built documents.
46
46
#
47
47
# The short X.Y version.
48
- version = '0.1 '
48
+ version = '0.2 '
49
49
# The full version, including alpha/beta/rc tags.
50
- release = '0.1 '
50
+ release = '0.2 '
51
51
52
52
# The language for content autogenerated by Sphinx. Refer to documentation
53
53
# for a list of supported languages.
Original file line number Diff line number Diff line change 3
3
from distutils .core import setup
4
4
5
5
setup (name = 'synapse' ,
6
- version = '0.1 ' ,
6
+ version = '0.2 ' ,
7
7
description = 'Distributed communication module' ,
8
8
author = 'Greg Leclercq' ,
9
9
author_email = 'greg@0x80.net' ,
You can’t perform that action at this time.
0 commit comments