Skip to content

Commit 34dceca

Browse files
committed
Merge tag 'v1.6.2' into dev
2 parents b65617d + aadefcb commit 34dceca

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

docs/releases/v1.6.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,8 @@ v1.6.1 (2022/5/22)
2828
* fix (`#385 <https://github.com/pywebio/PyWebIO/issues/385>`_): bootstrap-select issue
2929
* fix (`#389 <https://github.com/pywebio/PyWebIO/issues/389>`_): `put_select()` was hidden by `put_tabs()`
3030
* fix auto hold don't work on script mode
31-
* provide a fallback way when CDN is not available
31+
* provide a fallback way when CDN is not available
32+
33+
v1.6.2 (2022/7/16)
34+
---------------------
35+
* fix: plotly.js version error due to outdated CDN link

pywebio/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
__package__ = 'pywebio'
22
__description__ = 'Write interactive web app in script way.'
33
__url__ = 'https://pywebio.readthedocs.io'
4-
__version__ = "1.6.1"
5-
__version_info__ = (1, 6, 1, 0)
4+
__version__ = "1.6.2"
5+
__version_info__ = (1, 6, 2, 0)
66
__author__ = 'WangWeimin'
77
__author_email__ = 'wang0.618@qq.com'
88
__license__ = 'MIT'

pywebio/platform/tpl/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777

7878
require.config({
7979
paths: {
80-
'plotly': "https://cdn.plot.ly/plotly-latest.min",
80+
'plotly': "https://cdn.plot.ly/plotly-2.12.1.min",
8181
},
8282
});
8383

0 commit comments

Comments
 (0)