Skip to content

Commit 5cba58f

Browse files
committed
bump version (0.2)
1 parent 8da473a commit 5cba58f

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

debian/changelog

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
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+
124
python-synapse (0.1-1) unstable; urgency=low
225

326
* Initial release

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
# built documents.
4646
#
4747
# The short X.Y version.
48-
version = '0.1'
48+
version = '0.2'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '0.1'
50+
release = '0.2'
5151

5252
# The language for content autogenerated by Sphinx. Refer to documentation
5353
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44

55
setup(name='synapse',
6-
version = '0.1',
6+
version = '0.2',
77
description = 'Distributed communication module',
88
author = 'Greg Leclercq',
99
author_email = 'greg@0x80.net',

0 commit comments

Comments
 (0)