Skip to content

Commit

Permalink
Release 3.0.2 (#1062)
Browse files Browse the repository at this point in the history
* Fixed bad merge, fullmatch has been removed

* Release notes for 3.0.2

* Updated changelog for 3.0.2

* Updated version to 3.0.2
  • Loading branch information
jonmmease authored Jul 17, 2018
1 parent d8b6b17 commit 6b3a013
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
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

0 comments on commit 6b3a013

Please sign in to comment.