Skip to content

Commit

Permalink
Preparing for release 3.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
javipalanca committed Oct 2, 2018
1 parent 4025119 commit e319744
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Expand Up @@ -2,6 +2,14 @@
History
=======

3.0.8 (2018-10-02)
------------------

* Added a container mechanism to speedup local sends.
* Added performance example.
* Improved API doc.
* Added container tests.

3.0.7 (2018-09-27)
------------------

Expand Down
9 changes: 9 additions & 0 deletions docs/spade.rst
Expand Up @@ -20,6 +20,14 @@ spade.behaviour module
:undoc-members:
:show-inheritance:

spade.container module
----------------------

.. automodule:: spade.container
:members:
:undoc-members:
:show-inheritance:

spade.message module
--------------------

Expand Down Expand Up @@ -59,3 +67,4 @@ spade.web module
:members:
:undoc-members:
:show-inheritance:

1 change: 1 addition & 0 deletions requirements_dev.txt
Expand Up @@ -23,3 +23,4 @@ docutils==0.12
sphinx_rtd_theme==0.4.0
testfixtures==6.3.0
pytest-aiohttp==0.3.0
docutils==0.12
1 change: 1 addition & 0 deletions spade/agent.py
Expand Up @@ -73,6 +73,7 @@ def __init__(self, jid, password, verify_security=False, use_container=True, loo
def set_container(self, container):
"""
Sets the container to which the agent is attached
Args:
container (spade.container.Container): the container to be attached to
"""
Expand Down
2 changes: 2 additions & 0 deletions spade/message.py
Expand Up @@ -106,6 +106,7 @@ def sender(self, jid):
def thread(self):
"""
Get Thread of the message
Returns:
str: thread id
"""
Expand All @@ -115,6 +116,7 @@ def thread(self):
def thread(self, value):
"""
Set thread id of the message
Args:
value (str): the thread id
Expand Down

0 comments on commit e319744

Please sign in to comment.