From 36bc44a82c2ab544211a9b2c9949eda39bf06818 Mon Sep 17 00:00:00 2001 From: Kevin Bates Date: Sun, 7 Jun 2020 08:07:32 -0700 Subject: [PATCH] Release 6.1.0rc1 --- docs/source/changelog.rst | 15 +++++++++++++++ notebook/_version.py | 2 +- notebook/static/base/js/namespace.js | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 1992c08cf..566d84a48 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -74,6 +74,13 @@ Here is an enumeration of changes made since the last release and included in 6. - Another (Minor) Duplicate Code Reduction (:ghpull:`5316`) - Update readme regarding maintenance (:ghpull:`5500`) - Document contents chunks (:ghpull:`5508`) +- Backspace deletes empty line (:ghpull:`5516`) +- The dropdown submenu at notebook page is not keyboard accessible (:ghpull:`4732`) +- Tooltips visible through keyboard navigation for specified buttons (:ghpull:`4729`) +- Fix for recursive symlink (:ghpull:`4670`) +- Fix for the terminal shutdown issue (:ghpull:`4180`) +- Add japanese translation files (:ghpull:`4490`) +- Workaround for socket permission errors on Cygwin (:ghpull:`4584`) Thank you to all the contributors: @@ -87,10 +94,13 @@ Thank you to all the contributors: - dmpe - dylanzjy - dSchurch +- E\. M\. Bray - ErwinRussel - Grant Nestor - Jesus Panales Castillo +- Joshua Zeltser - Karthikeyan Singaravelan +- Kenichi Ito - Kevin Bates - Kris Wilson - Kyle Kelley @@ -98,15 +108,20 @@ Thank you to all the contributors: - Luis Cabezon Manchado - Madhusudhan Srinivasa - Matthias Geier +- mattn - Max Klein - Min RK +- Mingxuan Lin - Mohammad Mostafa Farzan - Niko Felger +- Norah Abanumay - Onno Broekmans - pinarkavak - Rohit Sanjay +- Shane Canon - Simon Li - Steven Silvester +- taohan16 - Thew Dhanat - Thomas Kluyver - Toon Baeyens diff --git a/notebook/_version.py b/notebook/_version.py index 7004fc7ad..65a8178bb 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, 0, 'rc1') __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..71e915396 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.0rc1"; Jupyter._target = '_blank'; return Jupyter;