Skip to content

Commit d8308e1

Browse files
committed
Release 6.1.4
1 parent e6e0585 commit d8308e1

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

docs/source/changelog.rst

+21
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,27 @@ We strongly recommend that you upgrade pip to version 9+ of pip before upgrading
2222
``pip --version``.
2323

2424

25+
.. _release-6.1.4:
26+
27+
6.1.4
28+
-----
29+
30+
- Fix broken links to jupyter documentation (:ghpull:`5686`)
31+
- Add additional entries to troubleshooting section (:ghpull:`5695`)
32+
- Revert change in page alignment (:ghpull:`5703`)
33+
- Bug fix: remove double encoding in download files (:ghpull:`5720`)
34+
- Fix typo for Check in zh_CN (:ghpull:`5730`)
35+
- Require a file name in the "Save As" dialog (:ghpull:`5733`)
36+
37+
Thank you to all the contributors:
38+
39+
- bdbai
40+
- Jaipreet Singh
41+
- Kevin Bates
42+
- Pavel Panchekha
43+
- Zach Sailer
44+
45+
2546
.. _release-6.1.3:
2647

2748
6.1.3

notebook/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
# Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**.
1111

12-
version_info = (7, 0, 0, '.dev0')
12+
version_info = (6, 1, 4)
1313
__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])

notebook/static/base/js/namespace.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ define(function(){
7373
// tree
7474
jglobal('SessionList','tree/js/sessionlist');
7575

76-
Jupyter.version = "7.0.0.dev0";
76+
Jupyter.version = "6.1.4";
7777
Jupyter._target = '_blank';
7878

7979
return Jupyter;

0 commit comments

Comments
 (0)