Skip to content

Commit 36bc44a

Browse files
committed
Release 6.1.0rc1
1 parent 8e7c99a commit 36bc44a

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

docs/source/changelog.rst

+15
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,13 @@ Here is an enumeration of changes made since the last release and included in 6.
7474
- Another (Minor) Duplicate Code Reduction (:ghpull:`5316`)
7575
- Update readme regarding maintenance (:ghpull:`5500`)
7676
- Document contents chunks (:ghpull:`5508`)
77+
- Backspace deletes empty line (:ghpull:`5516`)
78+
- The dropdown submenu at notebook page is not keyboard accessible (:ghpull:`4732`)
79+
- Tooltips visible through keyboard navigation for specified buttons (:ghpull:`4729`)
80+
- Fix for recursive symlink (:ghpull:`4670`)
81+
- Fix for the terminal shutdown issue (:ghpull:`4180`)
82+
- Add japanese translation files (:ghpull:`4490`)
83+
- Workaround for socket permission errors on Cygwin (:ghpull:`4584`)
7784

7885
Thank you to all the contributors:
7986

@@ -87,26 +94,34 @@ Thank you to all the contributors:
8794
- dmpe
8895
- dylanzjy
8996
- dSchurch
97+
- E\. M\. Bray
9098
- ErwinRussel
9199
- Grant Nestor
92100
- Jesus Panales Castillo
101+
- Joshua Zeltser
93102
- Karthikeyan Singaravelan
103+
- Kenichi Ito
94104
- Kevin Bates
95105
- Kris Wilson
96106
- Kyle Kelley
97107
- Luciano Resende
98108
- Luis Cabezon Manchado
99109
- Madhusudhan Srinivasa
100110
- Matthias Geier
111+
- mattn
101112
- Max Klein
102113
- Min RK
114+
- Mingxuan Lin
103115
- Mohammad Mostafa Farzan
104116
- Niko Felger
117+
- Norah Abanumay
105118
- Onno Broekmans
106119
- pinarkavak
107120
- Rohit Sanjay
121+
- Shane Canon
108122
- Simon Li
109123
- Steven Silvester
124+
- taohan16
110125
- Thew Dhanat
111126
- Thomas Kluyver
112127
- Toon Baeyens

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, 0, 'rc1')
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.0rc1";
7777
Jupyter._target = '_blank';
7878

7979
return Jupyter;

0 commit comments

Comments
 (0)