From 09d1cb1c8fae2723902d5144239b65a802fe0f3e Mon Sep 17 00:00:00 2001 From: Luciano Resende Date: Sun, 11 Aug 2019 09:44:11 -0700 Subject: [PATCH] Jupyter Kernel Gateway 2.4.0 release --- CHANGELOG.md | 7 +++++++ docs/source/summary-changes.md | 8 ++++++++ kernel_gateway/_version.py | 3 +-- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a177e95..27c1a2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 2.4.0 (2019-08-11) + +* [PR-323](https://github.com/jupyter/kernel_gateway/pull/323): Update handler not use deprecated maybe_future call +* [PR-322](https://github.com/jupyter/kernel_gateway/pull/322): Update handler compatibility with tornado/pyzmq updates +* [PR-321](https://github.com/jupyter/kernel_gateway/pull/321): Allow Notebook 6.x dependencies +* [PR-317](https://github.com/jupyter/kernel_gateway/pull/317): Better error toleration during server initialization + ## 2.3.0 (2019-03-15) * [PR-315](https://github.com/jupyter/kernel_gateway/pull/315): Call tornado StaticFileHandler.get() as a coroutine diff --git a/docs/source/summary-changes.md b/docs/source/summary-changes.md index 4ab578a..cd189f1 100644 --- a/docs/source/summary-changes.md +++ b/docs/source/summary-changes.md @@ -1,6 +1,14 @@ # Summary of changes See `git log` for a more detailed summary of changes. +## 2.4 + +## 2.4.0 (2019-08-11) + +* [PR-323](https://github.com/jupyter/kernel_gateway/pull/323): Update handler not use deprecated maybe_future call +* [PR-322](https://github.com/jupyter/kernel_gateway/pull/322): Update handler compatibility with tornado/pyzmq updates +* [PR-321](https://github.com/jupyter/kernel_gateway/pull/321): Allow Notebook 6.x dependencies +* [PR-317](https://github.com/jupyter/kernel_gateway/pull/317): Better error toleration during server initialization ## 2.3 diff --git a/kernel_gateway/_version.py b/kernel_gateway/_version.py index 80964c6..79a6417 100644 --- a/kernel_gateway/_version.py +++ b/kernel_gateway/_version.py @@ -6,8 +6,7 @@ version_info = ( 2, 4, - 0, - 'dev' + 0 ) __version__ = '.'.join(map(str, version_info))