File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
- ## [ 3.0.1 ] - 2018-07-17
5
+ ## [ 3.0.2 ] - 2018-07-17
6
6
This is a minor bug-fix release to 3.0.0
7
7
8
8
### Plotly.js version: 1.38.3
@@ -14,6 +14,9 @@ This is a minor bug-fix release to 3.0.0
14
14
[ GH1060] ( https://github.com/plotly/plotly.py/pull/1060 )
15
15
- Assorted performance improvements when constructing graph objects
16
16
[ GH1061] ( https://github.com/plotly/plotly.py/pull/1061 )
17
+
18
+ ## [ 3.0.1] - 2018-07-17 [ YANKED]
19
+ Note: This release's installation was broken. It has been removed from PyPI
17
20
18
21
## [ 3.0.0] - 2018-07-05
19
22
Original file line number Diff line number Diff line change @@ -2102,7 +2102,7 @@ def _perform_update(plotly_obj, update_obj):
2102
2102
if isinstance (plotly_obj , BaseLayoutType ):
2103
2103
for key in update_obj :
2104
2104
if key not in plotly_obj :
2105
- match = fullmatch ( plotly_obj ._subplotid_prop_re , key )
2105
+ match = plotly_obj ._subplotid_prop_re . match ( key )
2106
2106
if match :
2107
2107
# We need to create a subplotid object
2108
2108
plotly_obj [key ] = {}
Original file line number Diff line number Diff line change 1
- __version__ = '3.0.1 '
1
+ __version__ = '3.0.2 '
2
2
__frontend_version__ = '^0.1.1'
3
3
4
4
You can’t perform that action at this time.
0 commit comments