Skip to content
This repository has been archived by the owner on Nov 23, 2020. It is now read-only.

Commit

Permalink
Release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lsbardel committed Oct 23, 2016
1 parent 1cf35ac commit 1f32547
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
6 changes: 0 additions & 6 deletions agile.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,5 @@
"{{ python }} setup.py sdist bdist_wheel upload"
]
}
},
"tasks": {
"release": {
"description": "make a new release to github",
"command": ["python", "github:pulsar"]
}
}
}
15 changes: 13 additions & 2 deletions docs/source/history/1.5.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## Ver. 1.5.1 - 2016-Oct-23

This minor release brings ``Channels`` to pulsar.
Channels are a better way to manage publish/subscribe clients.
Channels use ``events`` to create namespaces which limit the
number of channels a client needs to subscribe to. A ``pubsub``
client can ``register`` to one or more event from a given channel.

This feature is in initial phase of development but stable.
Documentation will follow.


## Ver. 1.5.0 - 2016-Oct-11

This version brings several improvements and enhancements in the internal API.
Expand All @@ -19,5 +31,4 @@ To use the this third party event loop, pass the ``--io uv`` flag in the command
* Removed ``require`` script from wsgi media and refactoring [#239](https://github.com/quantmind/pulsar/issues/239)
* Test.wait only support ``assertRaises`` [#235](https://github.com/quantmind/pulsar/issues/235)
* Removed ``yield from`` from all tests
* No more docs in http://pythonhosted.org/pulsar/

* No more docs in http://pythonhosted.org/pulsar/
2 changes: 1 addition & 1 deletion pulsar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .utils.version import get_version


VERSION = (1, 5, 0, 'final', 0)
VERSION = (1, 5, 1, 'final', 0)

__version__ = version = get_version(VERSION)

Expand Down

0 comments on commit 1f32547

Please sign in to comment.