From 2a5bb5896fd25f8bacba8e72fef0abe93a7cbaf9 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 25 May 2019 20:44:26 +0100 Subject: [PATCH] update change log #nolog --- CHANGES.md | 9 +++++++++ README.rst | 2 ++ bin/release | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index b3e0a85f..5f0fbac8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,14 @@ # python-engineio change log +**Release 3.6.0** - 2019-05-25 + +- Tornado 6 support ([commit](https://github.com/miguelgrinberg/python-engineio/commit/99359e43188f05e1844b68fef862f3af99919044)) (thanks **Michotastico**!) +- added note on CORS support for sanic ([commit](https://github.com/miguelgrinberg/python-engineio/commit/a3a4cb82059e2229d1b5e9ed9404dacc1b9afc34)) +- added python 3.7 build ([commit](https://github.com/miguelgrinberg/python-engineio/commit/805aa9fd7156425a2dce6b782b96f0e805ee4501)) +- auto-generate change log during release ([commit](https://github.com/miguelgrinberg/python-engineio/commit/be2c76e3e5b803284a6f2a9e4abed3314b9af7b6)) +- added change log ([commit](https://github.com/miguelgrinberg/python-engineio/commit/f8b15d1c06439581ca6b0d697f67cd034fb5bbf5)) +- helper release script ([commit](https://github.com/miguelgrinberg/python-engineio/commit/d36548cade90ddf8c6ab68178cb9747d5ac0d51f)) + **Release 3.5.2** - 2019-05-19 - Support for Tornado 6 ([commit](https://github.com/miguelgrinberg/python-engineio/commit/3d0fd9ebc7ef671a9179746455e1ad55e66a7508)) (thanks **Michel Llorens**!) diff --git a/README.rst b/README.rst index 7511390b..a36d0698 100644 --- a/README.rst +++ b/README.rst @@ -11,10 +11,12 @@ Resources - `Documentation`_ - `PyPI`_ +- `Change Log`_ - Questions? See the `questions`_ others have asked on Stack Overflow, or `ask`_ your own question. .. _Engine.IO: https://github.com/socketio/engine.io .. _Documentation: https://python-engineio.readthedocs.io/en/latest/ .. _PyPI: https://pypi.python.org/pypi/python-engineio +.. _Change Log: https://github.com/miguelgrinberg/python-engineio/blob/master/CHANGES.md .. _questions: https://stackoverflow.com/questions/tagged/python-socketio .. _ask: https://stackoverflow.com/questions/ask?tags=python+python-socketio diff --git a/bin/release b/bin/release index 560931a1..608efec9 100755 --- a/bin/release +++ b/bin/release @@ -32,7 +32,7 @@ rm -rf dist pip install --upgrade pip wheel twine python setup.py sdist bdist_wheel --universal -git add $VERSION_FILE +git add $VERSION_FILE CHANGES.md git commit -m "Release $VERSION" git tag -f v$VERSION git push --tags origin master