~ubuntu-branches/ubuntu/precise/pyzmq/precise

« back to all changes in this revision

Viewing changes to docs/source/changelog.rst

  • Committer: Package Import Robot
  • Author(s): Debian Python Modules Team
  • Date: 2011-09-23 00:16:39 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: package-import@ubuntu.com-20110923001639-girjqodpb7uv17yu
Tags: 2.1.9-1
* New upstream version
  - should build on kFreeBSD without patches (Closes: #637777).
* Build-depend on zeromq 2.1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. PyZMQ changelog summary, started by Min Ragan-Kelley, 2011
 
2
 
 
3
.. _changelog:
 
4
 
 
5
================
 
6
Changes in PyZMQ
 
7
================
 
8
 
 
9
This is a coarse summary of changes in pyzmq versions.  For a real changelog, consult the
 
10
`git log <https://github.com/zeromq/pyzmq/commits>`_
 
11
 
 
12
 
 
13
2.1.9 (dev)
 
14
===========
 
15
 
 
16
* added zmq.ssh tools for tunneling socket connections, copied from IPython
 
17
* Expanded sockopt support to cover changes in libzmq-4.0 dev.
 
18
* Fixed an issue that prevented :exc:`KeyboardInterrupts` from being catchable.
 
19
* Added attribute-access for set/getsockopt.  Setting/Getting attributes of :class:`Sockets`
 
20
  with the names of socket options is mapped to calls of set/getsockopt.
 
21
 
 
22
.. sourcecode:: python
 
23
 
 
24
    s.hwm = 10
 
25
    s.identity = b'whoda'
 
26
    s.linger
 
27
    # -1
 
28
    
 
29
* Terminating a :class:`~Context` closes the sockets it created, matching the behavior in
 
30
  `czmq <http://czmq.zeromq.org/>`_.
 
31
* :class:`ThreadDevices` use :meth:`Context.instance` to create sockets, so they can use
 
32
  inproc connections to sockets in other threads.
 
33
* fixed units error on :func:`zmq.select`, where the poll timeout was 1000 times longer
 
34
  than expected.
 
35
* Add missing ``DEALER/ROUTER`` socket type names (currently aliases, to be replacements for ``XREP/XREQ``).
 
36
* base libzmq dependency raised to 2.1.4 (first stable release) from 2.1.0.
 
37
 
 
38
 
 
39
2.1.7.1
 
40
=======
 
41
 
 
42
* bdist for 64b Windows only.  This fixed a type mismatch on the ``ZMQ_FD`` sockopt
 
43
  that only affected that platform.
 
44
 
 
45
 
 
46
2.1.7
 
47
=====
 
48
 
 
49
* Added experimental support for libzmq-3.0 API
 
50
* Add :func:`zmq.eventloop.ioloop.install` for using pyzmq's IOLoop in a tornado
 
51
  application.
 
52
 
 
53
 
 
54
2.1.4
 
55
=====
 
56
 
 
57
* First version with binary distribution support
 
58
* Added :meth:`~Context.instance()` method for using a single Context throughout an application
 
59
  without passing references around.
 
60