Skip to content

Commit

Permalink
Bumped to version 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Jul 14, 2014
1 parent 9d980a9 commit 2abe0ae
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,13 @@ This module implements websockets on top of Django without requiring any additio
messaging it uses the [Redis](http://redis.io/) datastore and in a production environment, it is
intended to work under [uWSGI](http://projects.unbit.it/uwsgi/) and behind [NGiNX](http://nginx.com/).

Fixed in 0.4.1
New in 0.4.2
------------
* request.user.username has been replaced by get_username()

New in 0.4.0
------------
* Messages can be sent to users being member of one or more Django groups.
* Simplified the usage of ``RedisPublisher`` and ``RedisSubscriber`` to make the API more consistent.
* Added the possibility to receive heartbeats.
* Added reusable JavaScript code for the client.
* Added a context processor to inject some settings from ``ws4redis`` into templates.
* Message echoing can be switched “on” and “off” according to the user needs. Before it was “on” by
default.
* Many changes to become compatible with Python3; there are still minor issues to solve.
* The message string to be passed and stored to and from the websocket hase been converted into
a class ``RedisMessage`` for type saftey.

Features
--------
Expand Down
9 changes: 9 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
===============
Release History
===============
0.4.2
-----
* Message echoing can be switched on and off according to the user needs. Before it was on be
default.
* Many changes to get this app compatible with Python3. This is still not finished, since the
pilfered module ``websocket.py`` is not PY3 compatible yet.
* Added a class ``RedisMessage`` to pass and store the message to and from the websocket.
Before this was just a string with serialized data.

0.4.1
-----
* Fixed: ``request.user.username`` has been replaced by ``get_username()``.
Expand Down
2 changes: 1 addition & 1 deletion ws4redis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.4.2rc1'
__version__ = '0.4.2'

0 comments on commit 2abe0ae

Please sign in to comment.