From e661c7642d8a099fa1869ee6ce70a591098089c9 Mon Sep 17 00:00:00 2001 From: Gustavo Efeiche Date: Thu, 20 Sep 2018 00:15:58 -0300 Subject: [PATCH 1/3] Change from 6.0.0dev0 to 6.0.0.dev0 --- notebook/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/_version.py b/notebook/_version.py index 9ddd66dad..d7ec78b91 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 = (6, 0, 0, 'dev0') +version_info = (6, 0, 0, '.dev0') __version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:]) From a8716eb9ac69b75a1ceec3d230278d2bbe8663e6 Mon Sep 17 00:00:00 2001 From: Gustavo Efeiche Date: Thu, 20 Sep 2018 00:16:42 -0300 Subject: [PATCH 2/3] Fix versions mismatch in namespace.js and _version.py --- notebook/static/base/js/namespace.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/base/js/namespace.js b/notebook/static/base/js/namespace.js index 85db77f10..ed49a9ab9 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 = "5.7.0"; + Jupyter.version = "6.0.0.dev0"; Jupyter._target = '_blank'; return Jupyter; }); From 26c73d36d092e3088cf0d79d4a182025475bd07d Mon Sep 17 00:00:00 2001 From: Gustavo Efeiche Date: Thu, 20 Sep 2018 00:18:16 -0300 Subject: [PATCH 3/3] Fix issue #3948 --- notebook/static/base/js/namespace.js | 1 + 1 file changed, 1 insertion(+) diff --git a/notebook/static/base/js/namespace.js b/notebook/static/base/js/namespace.js index ed49a9ab9..070de85f8 100644 --- a/notebook/static/base/js/namespace.js +++ b/notebook/static/base/js/namespace.js @@ -75,6 +75,7 @@ define(function(){ Jupyter.version = "6.0.0.dev0"; Jupyter._target = '_blank'; + return Jupyter; });