Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.0.2 #1062

Merged
merged 4 commits into from
Jul 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion plotly/basedatatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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] = {}
Expand Down
2 changes: 1 addition & 1 deletion plotly/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '3.0.1'
__version__ = '3.0.2'
__frontend_version__ = '^0.1.1'


Expand Down