Release 6.1.1

Steven Silvester 6 years ago
parent 73e6c27369
commit 4489ca6b59

@ -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

@ -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:])

@ -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;

Loading…
Cancel
Save