Skip to content

Commit

Permalink
Back to dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer committed Dec 23, 2020
1 parent e39ccb9 commit fb5deee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion notebook/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

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

version_info = (6, 1, 6, '')

This comment has been minimized.

Copy link
@krassowski

krassowski Dec 31, 2020

Member

It seems that 6.1.6 was released with an empty string in the tuple which is causing me some issues when parsing JupyterLab config JSON (JSONDecodeError on notebookVersion, https://github.com/krassowski/jupyterlab-lsp/issues/444). I guess it was just a leftover from a previous dev/beta stage, and the issue is actually with us parsing the HTML attribute as JSON blindly rather than first dealing with escaping characters but I wanted to leave the note here in case if anyone else bumps into this.

This comment has been minimized.

Copy link
@kevin-bates

kevin-bates Jan 3, 2021

Member

Thanks @krassowski - I suspect we're going to need to build 6.1.7 fairly shortly and will try to make this right at that time.

version_info = (7, 0, 0, '.dev0')
__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])
2 changes: 1 addition & 1 deletion notebook/static/base/js/namespace.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ define(function(){
// tree
jglobal('SessionList','tree/js/sessionlist');

Jupyter.version = "6.1.6";
Jupyter.version = "7.0.0.dev0";
Jupyter._target = '_blank';

return Jupyter;
Expand Down

0 comments on commit fb5deee

Please sign in to comment.