diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a34b0da14c..fb2fde61f99 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/). -## [3.0.1] - 2018-07-17 +## [3.0.2] - 2018-07-17 This is a minor bug-fix release to 3.0.0 ### Plotly.js version: 1.38.3 @@ -14,6 +14,9 @@ This is a minor bug-fix release to 3.0.0 [GH1060](https://github.com/plotly/plotly.py/pull/1060) - Assorted performance improvements when constructing graph objects [GH1061](https://github.com/plotly/plotly.py/pull/1061) + +## [3.0.1] - 2018-07-17 [YANKED] +Note: This release's installation was broken. It has been removed from PyPI ## [3.0.0] - 2018-07-05 diff --git a/plotly/basedatatypes.py b/plotly/basedatatypes.py index c0e751e340b..65700aa3577 100644 --- a/plotly/basedatatypes.py +++ b/plotly/basedatatypes.py @@ -2102,7 +2102,7 @@ def _perform_update(plotly_obj, update_obj): if isinstance(plotly_obj, BaseLayoutType): for key in update_obj: if key not in plotly_obj: - match = fullmatch(plotly_obj._subplotid_prop_re, key) + match = plotly_obj._subplotid_prop_re.match(key) if match: # We need to create a subplotid object plotly_obj[key] = {} diff --git a/plotly/version.py b/plotly/version.py index 17b2a3051ef..ab42b287c55 100644 --- a/plotly/version.py +++ b/plotly/version.py @@ -1,4 +1,4 @@ -__version__ = '3.0.1' +__version__ = '3.0.2' __frontend_version__ = '^0.1.1'