Skip to content

Commit

Permalink
Releasing new version under the name "gevent-socketio-es" with follow…
Browse files Browse the repository at this point in the history
…ing changes/merge requests:

    * Setting Content-Length Headers to Strings - abourget#241 (by https://github.com/richardardrichard)
    * Stop re-raising exception on dead websocket - abourget#240 (by https://github.com/richardardrichard)
    * Fixed import to support Django>=1.9 - abourget#236 (by https://github.com/chrisspen)
    * Fix cfg_addr error on socket object - copied from abourget#200 (by https://github.com/shuoli84)
    * Fixes unicode error with newest gevent - abourget#221 (by https://github.com/bobvandevijver)
    * Fixes memory leak issue - abourget#225 (by https://github.com/chrismeyersfsu)
    * Full Python 2+3 support - commit 12da966 (by https://github.com/Eugeny)
    * Travis script fix  - commit 13cd65e (by https://github.com/Eugeny)
  • Loading branch information
dn0 committed Sep 3, 2016
1 parent f4d2c44 commit bb21276
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
New in 0.3.7-es (since 0.3.6)
-----------------------------
Releasing new version under the name "gevent-socketio-es" with following changes/merge requests:

* Setting Content-Length Headers to Strings - abourget/gevent-socketio#241 (by https://github.com/richardardrichard)
* Stop re-raising exception on dead websocket - abourget/gevent-socketio#240 (by https://github.com/richardardrichard)
* Fixed import to support Django>=1.9 - abourget/gevent-socketio#236 (by https://github.com/chrisspen)
* Fix cfg_addr error on socket object - copied from abourget/gevent-socketio#200 (by https://github.com/shuoli84)
* Fixes unicode error with newest gevent - abourget/gevent-socketio#221 (by https://github.com/bobvandevijver)
* Fixes memory leak issue - abourget/gevent-socketio#225 (by https://github.com/chrismeyersfsu)
* Full Python 2+3 support - commit 12da9667 (by https://github.com/Eugeny)
* Travis script fix - commit 13cd65e6 (by https://github.com/Eugeny)

New in 0.3.6 (since 0.3.5-rc3)
-----------------------------

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ def run_tests(self):
pytest.main(self.test_args)

setup(
name="gevent-socketio",
version="0.3.6",
name="gevent-socketio-es",
version="0.3.7",
description=(
"SocketIO server based on the Gevent pywsgi server, "
"a Python network library"),
author="Jeffrey Gelens",
author_email="[email protected]",
maintainer="Alexandre Bourget",
maintainer_email="[email protected]",
maintainer="Erigones",
maintainer_email="erigones [at] erigones.com",
license="BSD",
url="https://github.com/abourget/gevent-socketio",
download_url="https://github.com/abourget/gevent-socketio",
url="https://github.com/erigones/gevent-socketio",
download_url="https://github.com/erigones/gevent-socketio",
install_requires=get_reqs('pip-requirements.txt'),
setup_requires=('versiontools >= 1.7'),
cmdclass = {'test': PyTest},
Expand Down
2 changes: 1 addition & 1 deletion socketio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = (0, 3, 5)
__version__ = (0, 3, 7)

import logging
import gevent
Expand Down

0 comments on commit bb21276

Please sign in to comment.