diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2b8e05f0e6..a2eb0033b6 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -3,6 +3,11 @@ The Narrative Interface allows users to craft KBase Narratives using a combinati This is built on the Jupyter Notebook v5.6.0 (more notes will follow). +### Version 3.8.2 +- Add the clustergrammer_widget +- SCT-1219 - Fix the app cell so it shows an error if an app has multiple outputs, and they're given the same name. +- Add numpy, scipy, scikit-learn to the base Docker image + ### Version 3.8.1 - SCT-1261 - Changed the 'outdated app' warning to a small icon with a popover text. - SCT-886 - Added a default viewer for typed objects that don't have an actual viewer associated with them. diff --git a/bower.json b/bower.json index 8c724e99c2..ae17e2e2f5 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "kbase-narrative", - "version": "3.8.1", + "version": "3.8.2", "homepage": "https://kbase.us", "dependencies": { "bluebird": "3.4.7", diff --git a/package.json b/package.json index 312bffc4d1..da38d0af87 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "kbase-narrative-core", "description": "Core components for the KBase Narrative Interface", - "version": "3.8.1", + "version": "3.8.2", "private": true, "repository": "github.com/kbase/narrative", "devDependencies": { diff --git a/src/biokbase/narrative/__init__.py b/src/biokbase/narrative/__init__.py index c9681d03dd..525a286c18 100644 --- a/src/biokbase/narrative/__init__.py +++ b/src/biokbase/narrative/__init__.py @@ -1,7 +1,7 @@ __all__ = ['magics', 'ws_util', 'common', 'handlers', 'contents', 'services', 'widgetmanager'] #, 'viewers'] from semantic_version import Version -__version__ = Version("3.8.1") +__version__ = Version("3.8.2") version = lambda: __version__ # if run directly: diff --git a/src/config.json b/src/config.json index 292c287a50..c955dd29af 100644 --- a/src/config.json +++ b/src/config.json @@ -253,5 +253,5 @@ "showDelay": 750 }, "use_local_widgets": true, - "version": "3.8.1" + "version": "3.8.2" }