Skip to content

Commit

Permalink
released 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Sep 5, 2013
1 parent f6b234a commit 8164d4e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Ver. 0.6.0 - Development
Ver. 0.6.0 - 2013-Sep-05
===========================
* Several new features, critical bug fixes and increased tests coverage.
* Asynchronous framework:
Expand Down Expand Up @@ -54,7 +54,7 @@ Ver. 0.6.0 - Development
* Miscellaneous:
* Added :mod:`pulsar.utils.exceptions` documentation.

* **559 regression tests**, **88% coverage**.
* **558 regression tests**, **88% coverage**.

.. _4bd8a54: https://github.com/quantmind/pulsar/commit/4bd8a540c4cb7887b65e409fa0f61a36a29590dc

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ uses them to add additional functionalities.
the running application.
* psutil_: if installed, a ``system`` key is available in the dictionary returned by
Actor info method.
* Twisted_: required by the :mod:`pulsar.apps.tx` application when using pulsar
* Twisted_: required by the ``pulsar.apps.tx`` application when using pulsar
with twisted protocols.

Running Tests
Expand Down
5 changes: 4 additions & 1 deletion examples/calculator/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@
class TestRpcOnThread(unittest.TestCase):
app = None
concurrency = 'thread'
# used for both keep-alive and timeout in JsonProxy
# long enough to allow to wait for tasks
rpc_timeout = 500

@classmethod
def setUpClass(cls):
name = 'calc_' + cls.concurrency
s = server(bind='127.0.0.1:0', name=name, concurrency=cls.concurrency)
cls.app = yield send('arbiter', 'run', s)
cls.uri = 'http://{0}:{1}'.format(*cls.app.address)
cls.p = rpc.JsonProxy(cls.uri)
cls.p = rpc.JsonProxy(cls.uri, timeout=cls.rpc_timeout)
cls.sync = rpc.JsonProxy(cls.uri, force_sync=True)

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion pulsar/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -
'''Event driven concurrent framework for Python'''
VERSION = (0, 6, 0, 'beta', 2)
VERSION = (0, 6, 0, 'final', 2)

from .utils.version import get_version

Expand Down

0 comments on commit 8164d4e

Please sign in to comment.