From 25b8c25b54d74d22a753380ad0a51f2552820ba7 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 4 Aug 2019 17:55:23 -0400 Subject: [PATCH 01/13] Added initial 4.1 CHANGELOG --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11e11aa06cf..d9a7892020e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,37 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [4.1.0] - ??? + +### Updated + - Updated Plotly.js to version 1.49.1. See the + [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1491----2019-07-31) + for more information. + - Bars in the figures produced by the `create_gantt` figure factory may now be hidden by clicking on the legend ([#1665](https://github.com/plotly/plotly.py/pull/1665)). Special thanks to [@csabaszan](https://github.com/csabaszan) for this contribution! + - Improved performance when serializing figures containing large numpy arrays ([#1690](https://github.com/plotly/plotly.py/pull/1690)). Special thanks to [@miriad](https://github.com/miriad) for this contribution! + +### Added +- Added new renderers for displaying figures from within the Databricks and CoCalc notebook services ([#1703](https://github.com/plotly/plotly.py/pull/1703)) +- Added `indicator` traces ([plotly/plotly.js#3978](https://github.com/plotly/plotly.js/pull/3978)) +- Added `choroplethmapbox` traces ([plotly/plotly.js#3988](https://github.com/plotly/plotly.js/pull/3988)) +- Added `densitymapbox` traces ([plotly/plotly.js#3993](https://github.com/plotly/plotly.js/pull/3993)) +- Added new mapbox `style` values: `open-street-map`, `carto-positron`, `carto-darkmatter`, + `stamen-terrain`, `stamen-toner`, `stamen-watercolor` and `white-bg` + that do not require a Mapbox access token ([plotly/plotly.js#3987](https://github.com/plotly/plotly.js/pull/3987), [plotly/plotly.js#4068](https://github.com/plotly/plotly.js/pull/4068)) +- Added support for `sourcetype` value `raster` and `image` and `type` `raster` + for mapbox layout layers ([plotly/plotly.js#4006](https://github.com/plotly/plotly.js/pull/4006)) +- Added `below` attribute to `scattermapbox` traces ([plotly/plotly.js#4058](https://github.com/plotly/plotly.js/pull/4058)) +- Added support for `below: 'traces'` in mapbox layout layers ([plotly/plotly.js#4058](https://github.com/plotly/plotly.js/pull/4058)) +- Added `sourceattribution` attribute to mapbox layout layers ([plotly/plotly.js#4069](https://github.com/plotly/plotly.js/pull/4069)) +- Added `labelangle` and `labelside` attributes to `parcoords` traces ([plotly/plotly.js#3966](https://github.com/plotly/plotly.js/pull/3966)) +- Added `doubleClickDelay` config option ([plotly/plotly.js#3991](https://github.com/plotly/plotly.js/pull/3991)) +- Added `showEditInChartStudio` config option ([plotly/plotly.js#4061](https://github.com/plotly/plotly.js/pull/4061)) + +### Fixed + - Fixed "The truth value of an array with more than one element is ambiguous" error when specifying subplot titles as numpy array of strings ([#1685](https://github.com/plotly/plotly.py/pull/1685)). Special thanks to [@MrQubo](https://github.com/MrQubo) for this contribution! + - The `line_3d` plotly express function was not visible by default when importing `*` from `plotly.express` ([#1667](https://github.com/plotly/plotly.py/pull/1667/files)) + + ## [4.0.0] - 2019-07-16 This is a major release that includes many new features, and a few breaking changes. See the [version 4 announcement](https://community.plot.ly/t/introducing-plotly-py-4-0-0rc1/25639) for a summary of the important changes. From 475db5f500cdcacba489751216400b155242f400 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 4 Aug 2019 17:58:21 -0400 Subject: [PATCH 02/13] Update README installation instructions for release candidate --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 580a2326d8f..ddf4ec54731 100644 --- a/README.md +++ b/README.md @@ -78,12 +78,12 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is plotly.py may be installed using pip... ``` -pip install plotly==4.0.0 +pip install plotly==4.1.0rc1 ``` or conda. ``` -conda install -c plotly plotly==4.0.0 +conda install -c plotly/label/test plotly==4.1.0rc1 ``` ### Jupyter Notebook Support @@ -126,10 +126,10 @@ set NODE_OPTIONS=--max-old-space-size=4096 jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0 --no-build # FigureWidget support -jupyter labextension install plotlywidget@1.0.0 --no-build +jupyter labextension install plotlywidget@1.1.0-rc.1 --no-build # and jupyterlab renderer support -jupyter labextension install jupyterlab-plotly@1.0.0 --no-build +jupyter labextension install jupyterlab-plotly@1.1.0-rc.1 --no-build # JupyterLab chart editor support (optional) jupyter labextension install jupyterlab-chart-editor@1.2 --no-build From 592b785f90127e4da9c58570f1a4db5e6152021c Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Sun, 4 Aug 2019 18:04:26 -0400 Subject: [PATCH 03/13] Bump versions of plotlywidget and jupyterlab-plotly to 1.1.0-rc.1 --- packages/javascript/jupyterlab-plotly/package-lock.json | 2 +- packages/javascript/jupyterlab-plotly/package.json | 2 +- packages/javascript/plotlywidget/package-lock.json | 2 +- packages/javascript/plotlywidget/package.json | 2 +- packages/python/plotly/plotlywidget/static/index.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/javascript/jupyterlab-plotly/package-lock.json b/packages/javascript/jupyterlab-plotly/package-lock.json index 8339a63731e..882bc1c5cf4 100644 --- a/packages/javascript/jupyterlab-plotly/package-lock.json +++ b/packages/javascript/jupyterlab-plotly/package-lock.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "1.0.0", + "version": "1.1.0-rc.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/javascript/jupyterlab-plotly/package.json b/packages/javascript/jupyterlab-plotly/package.json index 07267f52864..698f7836600 100644 --- a/packages/javascript/jupyterlab-plotly/package.json +++ b/packages/javascript/jupyterlab-plotly/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "1.0.0", + "version": "1.1.0-rc.1", "description": "The plotly JupyterLab extension", "author": "The plotly.py team", "license": "MIT", diff --git a/packages/javascript/plotlywidget/package-lock.json b/packages/javascript/plotlywidget/package-lock.json index cfff10f2db0..38191305922 100644 --- a/packages/javascript/plotlywidget/package-lock.json +++ b/packages/javascript/plotlywidget/package-lock.json @@ -1,6 +1,6 @@ { "name": "plotlywidget", - "version": "1.0.0", + "version": "1.1.0-rc.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/javascript/plotlywidget/package.json b/packages/javascript/plotlywidget/package.json index 269820e3124..88fef4aa1da 100644 --- a/packages/javascript/plotlywidget/package.json +++ b/packages/javascript/plotlywidget/package.json @@ -1,6 +1,6 @@ { "name": "plotlywidget", - "version": "1.0.0", + "version": "1.1.0-rc.1", "description": "The plotly JupyterLab extension", "author": "The plotly.py team", "license": "MIT", diff --git a/packages/python/plotly/plotlywidget/static/index.js b/packages/python/plotly/plotlywidget/static/index.js index 43faa3e37cc..3b3a2212c1f 100644 --- a/packages/python/plotly/plotlywidget/static/index.js +++ b/packages/python/plotly/plotlywidget/static/index.js @@ -12569,7 +12569,7 @@ module.exports = function identity(d) { return d; }; /* 19 */ /***/ (function(module, exports) { -module.exports = {"name":"plotlywidget","version":"1.0.0","description":"The plotly JupyterLab extension","author":"The plotly.py team","license":"MIT","main":"src/index.js","repository":{"type":"git","url":"https://github.com/plotly/plotly.py"},"keywords":["jupyter","widgets","ipython","ipywidgets","plotly"],"files":["src/**/*.js","dist/*.js","style/*.*"],"scripts":{"build":"npm run build:src","build:src":"rimraf dist && tsc","clean":"rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'","prepublish":"webpack","test":"echo \"Error: no test specified\" && exit 1"},"devDependencies":{"webpack":"^3.10.0","rimraf":"^2.6.1","ify-loader":"^1.1.0","typescript":"~3.1.1"},"dependencies":{"plotly.js":"^1.49.1","@jupyter-widgets/base":"^2.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js"}} +module.exports = {"name":"plotlywidget","version":"1.1.0-rc.1","description":"The plotly JupyterLab extension","author":"The plotly.py team","license":"MIT","main":"src/index.js","repository":{"type":"git","url":"https://github.com/plotly/plotly.py"},"keywords":["jupyter","widgets","ipython","ipywidgets","plotly"],"files":["src/**/*.js","dist/*.js","style/*.*"],"scripts":{"build":"npm run build:src","build:src":"rimraf dist && tsc","clean":"rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'","prepublish":"webpack","test":"echo \"Error: no test specified\" && exit 1"},"devDependencies":{"webpack":"^3.10.0","rimraf":"^2.6.1","ify-loader":"^1.1.0","typescript":"~3.1.1"},"dependencies":{"plotly.js":"^1.49.1","@jupyter-widgets/base":"^2.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js"}} /***/ }), /* 20 */ From 226a1940e98e44acd8a77553aa9174938bcec080 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 05:23:51 -0400 Subject: [PATCH 04/13] Remove px __version__ var now that px is integrated into plotly.py --- packages/python/plotly/plotly/express/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/python/plotly/plotly/express/__init__.py b/packages/python/plotly/plotly/express/__init__.py index 21848cb4283..19aa4bb3e51 100644 --- a/packages/python/plotly/plotly/express/__init__.py +++ b/packages/python/plotly/plotly/express/__init__.py @@ -3,8 +3,6 @@ data exploration and figure generation. See the gallery at https://plotly.github.io/plotly_express """ -__version__ = "0.3.0" - from ._chart_types import ( # noqa: F401 scatter, scatter_3d, From 7d4b76bf988a820cb2d960e1d7bf46192f099249 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 05:28:05 -0400 Subject: [PATCH 05/13] Fix facet row label ordering --- packages/python/plotly/plotly/express/_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/python/plotly/plotly/express/_core.py b/packages/python/plotly/plotly/express/_core.py index 55111463816..de8d6d3c57b 100644 --- a/packages/python/plotly/plotly/express/_core.py +++ b/packages/python/plotly/plotly/express/_core.py @@ -1063,7 +1063,7 @@ def init_figure( row_titles = [None] * nrows for frame in frame_list: for trace in frame["data"]: - row0 = nrows - trace._subplot_row + row0 = trace._subplot_row - 1 col0 = trace._subplot_col - 1 if isinstance(trace, go.Splom): From 31cd2fc224982e9093c3f5d924c82b694504fc01 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 12:34:18 -0400 Subject: [PATCH 06/13] Fix row_titles to honor start_cell specification --- packages/python/plotly/plotly/subplots.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/python/plotly/plotly/subplots.py b/packages/python/plotly/plotly/subplots.py index 6af054941d4..bd869ad249f 100644 --- a/packages/python/plotly/plotly/subplots.py +++ b/packages/python/plotly/plotly/subplots.py @@ -753,12 +753,7 @@ def _checks(item, defaults): if row_titles: domains_list = [] - if row_dir < 0: - rows_iter = range(rows - 1, -1, -1) - else: - rows_iter = range(rows) - - for r in rows_iter: + for r in range(rows): domain_pair = domains_grid[r][-1] if domain_pair: domains_list.extend(domain_pair) From c75fe3e0594b20287b474db4455f86f4a9f92747 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 12:35:19 -0400 Subject: [PATCH 07/13] Order plotly express facets from top-left rather than bottom-left --- packages/python/plotly/plotly/express/_core.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/python/plotly/plotly/express/_core.py b/packages/python/plotly/plotly/express/_core.py index de8d6d3c57b..a04eddb36aa 100644 --- a/packages/python/plotly/plotly/express/_core.py +++ b/packages/python/plotly/plotly/express/_core.py @@ -393,7 +393,8 @@ def configure_cartesian_axes(args, fig, orders): # Set x-axis titles and axis options in the bottom-most row x_title = get_decorated_label(args, args["x"], "x") - for xaxis in fig.select_xaxes(row=1): + nrows = len(fig._grid_ref) + for xaxis in fig.select_xaxes(row=nrows): xaxis.update(title_text=x_title) set_cartesian_axis_opts(args, xaxis, "x", orders) @@ -1128,7 +1129,7 @@ def init_figure( vertical_spacing=vertical_spacing, row_heights=row_heights, column_widths=column_widths, - start_cell="bottom-left", + start_cell="top-left", ) # Remove explicit font size of row/col titles so template can take over From e1141cf90adf3ccd73d27e7e04dfc0b311efe85b Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 17:38:40 -0400 Subject: [PATCH 08/13] Added plotly express facet row fix to CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9a7892020e..8991093e119 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Added `showEditInChartStudio` config option ([plotly/plotly.js#4061](https://github.com/plotly/plotly.js/pull/4061)) ### Fixed + - Fixed incorrect facet row ordering in figures generated by plotly.express functions ([plotly/plotly_express#129](https://github.com/plotly/plotly_express/issues/129)) - Fixed "The truth value of an array with more than one element is ambiguous" error when specifying subplot titles as numpy array of strings ([#1685](https://github.com/plotly/plotly.py/pull/1685)). Special thanks to [@MrQubo](https://github.com/MrQubo) for this contribution! - The `line_3d` plotly express function was not visible by default when importing `*` from `plotly.express` ([#1667](https://github.com/plotly/plotly.py/pull/1667/files)) From 97794e5bcdaede011f709b56b39dc6fab40e4929 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 18:15:02 -0400 Subject: [PATCH 09/13] Add date to CHANGELOG --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8991093e119..96a8262d980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [4.1.0] - ??? +## [4.1.0] - 2019-08-06 ### Updated - Updated Plotly.js to version 1.49.1. See the From 6d622c996a3f8d28916b9fad6709002bf5ef4c40 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 18:15:54 -0400 Subject: [PATCH 10/13] Finalize README versions --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ddf4ec54731..b5f9274e471 100644 --- a/README.md +++ b/README.md @@ -78,12 +78,12 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is plotly.py may be installed using pip... ``` -pip install plotly==4.1.0rc1 +pip install plotly==4.1.0 ``` or conda. ``` -conda install -c plotly/label/test plotly==4.1.0rc1 +conda install -c plotly plotly==4.1.0 ``` ### Jupyter Notebook Support @@ -126,10 +126,10 @@ set NODE_OPTIONS=--max-old-space-size=4096 jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0 --no-build # FigureWidget support -jupyter labextension install plotlywidget@1.1.0-rc.1 --no-build +jupyter labextension install plotlywidget@1.1.0 --no-build # and jupyterlab renderer support -jupyter labextension install jupyterlab-plotly@1.1.0-rc.1 --no-build +jupyter labextension install jupyterlab-plotly@1.1.0 --no-build # JupyterLab chart editor support (optional) jupyter labextension install jupyterlab-chart-editor@1.2 --no-build From 589460cb11b7e6647a8ab8d0669d37c1398d00f9 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 19:22:39 -0400 Subject: [PATCH 11/13] Fix plotly express marginals Go back to start_cell bottom-left since that makes marginal code easier. Now flip the row index of traces before they are inserted in the grid. --- .../python/plotly/plotly/express/_core.py | 29 ++++++++++++------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/packages/python/plotly/plotly/express/_core.py b/packages/python/plotly/plotly/express/_core.py index d60c60dfac6..69b3c9ac382 100644 --- a/packages/python/plotly/plotly/express/_core.py +++ b/packages/python/plotly/plotly/express/_core.py @@ -352,12 +352,18 @@ def configure_cartesian_marginal_axes(args, fig, orders): # Add axis titles to non-marginal subplots y_title = get_decorated_label(args, args["y"], "y") - for row in range(1, nrows): - fig.update_yaxes(title_text=y_title, row=row, col=1) + if args["marginal_x"]: + fig.update_yaxes(title_text=y_title, row=1, col=1) + else: + for row in range(1, nrows + 1): + fig.update_yaxes(title_text=y_title, row=row, col=1) x_title = get_decorated_label(args, args["x"], "x") - for col in range(1, ncols): - fig.update_xaxes(title_text=x_title, row=1, col=col) + if args["marginal_y"]: + fig.update_xaxes(title_text=x_title, row=1, col=1) + else: + for col in range(1, ncols + 1): + fig.update_xaxes(title_text=x_title, row=1, col=col) # Configure axis type across all x-axes if "log_x" in args and args["log_x"]: @@ -393,8 +399,7 @@ def configure_cartesian_axes(args, fig, orders): # Set x-axis titles and axis options in the bottom-most row x_title = get_decorated_label(args, args["x"], "x") - nrows = len(fig._grid_ref) - for xaxis in fig.select_xaxes(row=nrows): + for xaxis in fig.select_xaxes(row=1): xaxis.update(title_text=x_title) set_cartesian_axis_opts(args, xaxis, "x", orders) @@ -959,7 +964,7 @@ def make_figure(args, constructor, trace_patch={}, layout_patch={}): row = m.val_map[val] trace._subplot_row_val = val else: - if trace_spec.marginal == "x": + if has_marginal_x and trace_spec.marginal != "x": row = 2 else: row = 1 @@ -1040,7 +1045,11 @@ def make_figure(args, constructor, trace_patch={}, layout_patch={}): continue _set_trace_grid_reference( - trace, fig.layout, fig._grid_ref, trace._subplot_row, trace._subplot_col + trace, + fig.layout, + fig._grid_ref, + nrows - trace._subplot_row + 1, + trace._subplot_col, ) # Add traces, layout and frames to figure @@ -1123,13 +1132,13 @@ def init_figure( specs=specs, shared_xaxes="all", shared_yaxes="all", - row_titles=row_titles, + row_titles=list(reversed(row_titles)), column_titles=column_titles, horizontal_spacing=horizontal_spacing, vertical_spacing=vertical_spacing, row_heights=row_heights, column_widths=column_widths, - start_cell="top-left", + start_cell="bottom-left", ) # Remove explicit font size of row/col titles so template can take over From 87a650c6ebfd61b2cc940e2359df57c44b8d1c87 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 20:02:39 -0400 Subject: [PATCH 12/13] Update __frontend_version__ to 1.1.0-rc.1 --- packages/python/plotly/plotly/_widget_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/python/plotly/plotly/_widget_version.py b/packages/python/plotly/plotly/_widget_version.py index b7943be5c9d..05d421e4633 100644 --- a/packages/python/plotly/plotly/_widget_version.py +++ b/packages/python/plotly/plotly/_widget_version.py @@ -2,4 +2,4 @@ # for automated dev builds # # It is edited by hand prior to official releases -__frontend_version__ = "^1.0.0" +__frontend_version__ = "^1.1.0-rc.1" From 70a82077dd9cd60157d922e17cb2550cd3ee1916 Mon Sep 17 00:00:00 2001 From: Jon Mease Date: Tue, 6 Aug 2019 20:17:40 -0400 Subject: [PATCH 13/13] Finalize versions of plotlywidget and jupyterlab-plotly --- packages/javascript/jupyterlab-plotly/package-lock.json | 2 +- packages/javascript/jupyterlab-plotly/package.json | 2 +- packages/javascript/plotlywidget/package-lock.json | 2 +- packages/javascript/plotlywidget/package.json | 2 +- packages/python/plotly/plotly/_widget_version.py | 2 +- packages/python/plotly/plotlywidget/static/index.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/javascript/jupyterlab-plotly/package-lock.json b/packages/javascript/jupyterlab-plotly/package-lock.json index 882bc1c5cf4..43298c597d8 100644 --- a/packages/javascript/jupyterlab-plotly/package-lock.json +++ b/packages/javascript/jupyterlab-plotly/package-lock.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "1.1.0-rc.1", + "version": "1.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/javascript/jupyterlab-plotly/package.json b/packages/javascript/jupyterlab-plotly/package.json index 698f7836600..86ff503fc5c 100644 --- a/packages/javascript/jupyterlab-plotly/package.json +++ b/packages/javascript/jupyterlab-plotly/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "1.1.0-rc.1", + "version": "1.1.0", "description": "The plotly JupyterLab extension", "author": "The plotly.py team", "license": "MIT", diff --git a/packages/javascript/plotlywidget/package-lock.json b/packages/javascript/plotlywidget/package-lock.json index 38191305922..18893e6d22f 100644 --- a/packages/javascript/plotlywidget/package-lock.json +++ b/packages/javascript/plotlywidget/package-lock.json @@ -1,6 +1,6 @@ { "name": "plotlywidget", - "version": "1.1.0-rc.1", + "version": "1.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/javascript/plotlywidget/package.json b/packages/javascript/plotlywidget/package.json index 88fef4aa1da..2ee22c55e6b 100644 --- a/packages/javascript/plotlywidget/package.json +++ b/packages/javascript/plotlywidget/package.json @@ -1,6 +1,6 @@ { "name": "plotlywidget", - "version": "1.1.0-rc.1", + "version": "1.1.0", "description": "The plotly JupyterLab extension", "author": "The plotly.py team", "license": "MIT", diff --git a/packages/python/plotly/plotly/_widget_version.py b/packages/python/plotly/plotly/_widget_version.py index 05d421e4633..593e93e6fd6 100644 --- a/packages/python/plotly/plotly/_widget_version.py +++ b/packages/python/plotly/plotly/_widget_version.py @@ -2,4 +2,4 @@ # for automated dev builds # # It is edited by hand prior to official releases -__frontend_version__ = "^1.1.0-rc.1" +__frontend_version__ = "^1.1.0" diff --git a/packages/python/plotly/plotlywidget/static/index.js b/packages/python/plotly/plotlywidget/static/index.js index 3b3a2212c1f..ceea30dfc82 100644 --- a/packages/python/plotly/plotlywidget/static/index.js +++ b/packages/python/plotly/plotlywidget/static/index.js @@ -12569,7 +12569,7 @@ module.exports = function identity(d) { return d; }; /* 19 */ /***/ (function(module, exports) { -module.exports = {"name":"plotlywidget","version":"1.1.0-rc.1","description":"The plotly JupyterLab extension","author":"The plotly.py team","license":"MIT","main":"src/index.js","repository":{"type":"git","url":"https://github.com/plotly/plotly.py"},"keywords":["jupyter","widgets","ipython","ipywidgets","plotly"],"files":["src/**/*.js","dist/*.js","style/*.*"],"scripts":{"build":"npm run build:src","build:src":"rimraf dist && tsc","clean":"rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'","prepublish":"webpack","test":"echo \"Error: no test specified\" && exit 1"},"devDependencies":{"webpack":"^3.10.0","rimraf":"^2.6.1","ify-loader":"^1.1.0","typescript":"~3.1.1"},"dependencies":{"plotly.js":"^1.49.1","@jupyter-widgets/base":"^2.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js"}} +module.exports = {"name":"plotlywidget","version":"1.1.0","description":"The plotly JupyterLab extension","author":"The plotly.py team","license":"MIT","main":"src/index.js","repository":{"type":"git","url":"https://github.com/plotly/plotly.py"},"keywords":["jupyter","widgets","ipython","ipywidgets","plotly"],"files":["src/**/*.js","dist/*.js","style/*.*"],"scripts":{"build":"npm run build:src","build:src":"rimraf dist && tsc","clean":"rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'","prepublish":"webpack","test":"echo \"Error: no test specified\" && exit 1"},"devDependencies":{"webpack":"^3.10.0","rimraf":"^2.6.1","ify-loader":"^1.1.0","typescript":"~3.1.1"},"dependencies":{"plotly.js":"^1.49.1","@jupyter-widgets/base":"^2.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin.js"}} /***/ }), /* 20 */