From 85aac0fa2d22fad7118afa2bd430163e5cf66bcd Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 10 Aug 2018 13:56:58 +0200 Subject: [PATCH] prepare to release 0.9.2 --- docs/source/changelog.md | 13 ++++++++++++- jupyterhub/_version.py | 8 ++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/docs/source/changelog.md b/docs/source/changelog.md index 504d56ce..a79d88c3 100644 --- a/docs/source/changelog.md +++ b/docs/source/changelog.md @@ -9,6 +9,16 @@ command line for details. ## 0.9 +### [0.9.2] 2018-08-10 + +JupyterHub 0.9.2 contains small bugfixes and improvements. + +- Documentation and example improvements +- Add `Spawner.consecutive_failure_limit` config for aborting the Hub if too many spawns fail in a row. +- Fix for handling SIGTERM when run with asyncio (tornado 5) +- Windows compatibility fixes + + ### [0.9.1] 2018-07-04 JupyterHub 0.9.1 contains a number of small bugfixes on top of 0.9. @@ -392,7 +402,8 @@ Fix removal of `/login` page in 0.4.0, breaking some OAuth providers. First preview release -[Unreleased]: https://github.com/jupyterhub/jupyterhub/compare/0.9.1...HEAD +[Unreleased]: https://github.com/jupyterhub/jupyterhub/compare/0.9.2...HEAD +[0.9.2]: https://github.com/jupyterhub/jupyterhub/compare/0.9.1...0.9.2 [0.9.1]: https://github.com/jupyterhub/jupyterhub/compare/0.9.0...0.9.1 [0.9.0]: https://github.com/jupyterhub/jupyterhub/compare/0.8.1...0.9.0 [0.8.1]: https://github.com/jupyterhub/jupyterhub/compare/0.8.0...0.8.1 diff --git a/jupyterhub/_version.py b/jupyterhub/_version.py index 2b4e8290..4c821c5a 100644 --- a/jupyterhub/_version.py +++ b/jupyterhub/_version.py @@ -4,11 +4,11 @@ # Distributed under the terms of the Modified BSD License. version_info = ( - 1, 0, - 0, - "", # release (b1, rc1, or "" for final) - "dev", # dev or nothing + 9, + 2, + "", # release (b1, rc1, or "" for final or dev) + # "dev", # dev or nothing ) # pep 440 version: no dot before beta/rc, but before .dev