Skip to content

Commit 6b3a013

Browse files
authored
Release 3.0.2 (#1062)
* 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
1 parent d8b6b17 commit 6b3a013

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [3.0.1] - 2018-07-17
5+
## [3.0.2] - 2018-07-17
66
This is a minor bug-fix release to 3.0.0
77

88
### Plotly.js version: 1.38.3
@@ -14,6 +14,9 @@ This is a minor bug-fix release to 3.0.0
1414
[GH1060](https://github.com/plotly/plotly.py/pull/1060)
1515
- Assorted performance improvements when constructing graph objects
1616
[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
1720

1821
## [3.0.0] - 2018-07-05
1922

plotly/basedatatypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2102,7 +2102,7 @@ def _perform_update(plotly_obj, update_obj):
21022102
if isinstance(plotly_obj, BaseLayoutType):
21032103
for key in update_obj:
21042104
if key not in plotly_obj:
2105-
match = fullmatch(plotly_obj._subplotid_prop_re, key)
2105+
match = plotly_obj._subplotid_prop_re.match(key)
21062106
if match:
21072107
# We need to create a subplotid object
21082108
plotly_obj[key] = {}

plotly/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '3.0.1'
1+
__version__ = '3.0.2'
22
__frontend_version__ = '^0.1.1'
33

44

0 commit comments

Comments
 (0)