From 4489ca6b59ce1cd81cba47d71d5b88a73de15112 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 3 Aug 2020 13:52:47 -0500 Subject: [PATCH] Release 6.1.1 --- docs/source/changelog.rst | 13 +++++++++++++ notebook/_version.py | 2 +- notebook/static/base/js/namespace.js | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 3d1829fb6..a640a5503 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -21,6 +21,19 @@ We strongly recommend that you upgrade pip to version 9+ of pip before upgrading Use ``pip install pip --upgrade`` to upgrade pip. Check pip version with ``pip --version``. + +.. _release-6.1.1: + +6.1.1 +----- + +- Prevent inclusion of requests_unixsocket on Windows (:ghpull:`5650`) + +Thanks for all the contributors: + +- Kevin Bates + + .. _release-6.1.0: 6.1.0 diff --git a/notebook/_version.py b/notebook/_version.py index 7004fc7ad..32571467c 100644 --- a/notebook/_version.py +++ b/notebook/_version.py @@ -9,5 +9,5 @@ store the current version info of the notebook. # Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**. -version_info = (7, 0, 0, '.dev0') +version_info = (6, 1, 1) __version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:]) diff --git a/notebook/static/base/js/namespace.js b/notebook/static/base/js/namespace.js index d82ff7b56..04b91b059 100644 --- a/notebook/static/base/js/namespace.js +++ b/notebook/static/base/js/namespace.js @@ -73,7 +73,7 @@ define(function(){ // tree jglobal('SessionList','tree/js/sessionlist'); - Jupyter.version = "7.0.0.dev0"; + Jupyter.version = "6.1.1"; Jupyter._target = '_blank'; return Jupyter;