diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 7be37c9d85..d6cac1464a 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -22,6 +22,27 @@ We strongly recommend that you upgrade pip to version 9+ of pip before upgrading ``pip --version``. +.. _release-6.1.4: + +6.1.4 +----- + +- Fix broken links to jupyter documentation (:ghpull:`5686`) +- Add additional entries to troubleshooting section (:ghpull:`5695`) +- Revert change in page alignment (:ghpull:`5703`) +- Bug fix: remove double encoding in download files (:ghpull:`5720`) +- Fix typo for Check in zh_CN (:ghpull:`5730`) +- Require a file name in the "Save As" dialog (:ghpull:`5733`) + +Thank you to all the contributors: + +- bdbai +- Jaipreet Singh +- Kevin Bates +- Pavel Panchekha +- Zach Sailer + + .. _release-6.1.3: 6.1.3 diff --git a/notebook/_version.py b/notebook/_version.py index 7004fc7ad3..627f2ddb59 100644 --- a/notebook/_version.py +++ b/notebook/_version.py @@ -9,5 +9,5 @@ # 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, 4) __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 d82ff7b567..5e39a6fe2d 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.4"; Jupyter._target = '_blank'; return Jupyter;