Browse Source

release v1.6.3

wangweimin 2 years ago
parent
commit
eca675c7eb
2 changed files with 11 additions and 2 deletions
  1. 9 0
      docs/releases/v1.6.rst
  2. 2 2
      pywebio/__version__.py

+ 9 - 0
docs/releases/v1.6.rst

@@ -33,3 +33,12 @@ v1.6.1 (2022/5/22)
 v1.6.2 (2022/7/16)
 ---------------------
 * fix: plotly.js version error due to outdated CDN link
+
+v1.6.3 (2022/10/4)
+---------------------
+* fix (`#459 <https://github.com/pywebio/PyWebIO/issues/459>`_): code textarea onchange fired when set value
+* fix (`#453 <https://github.com/pywebio/PyWebIO/issues/453>`_): put_table() error when table data is empty with rich header
+* reset static resource cache after version upgrade
+* fix ``cancel`` type raise error in single `action()`
+* fix (`#377 <https://github.com/pywebio/PyWebIO/issues/377>`_): error in nested `onchange`
+* fix (`#468 <https://github.com/pywebio/PyWebIO/issues/468>`_): reset don't work in `select()`

+ 2 - 2
pywebio/__version__.py

@@ -1,8 +1,8 @@
 __package__ = 'pywebio'
 __description__ = 'Write interactive web app in script way.'
 __url__ = 'https://pywebio.readthedocs.io'
-__version__ = "1.6.2"
-__version_info__ = (1, 6, 2, 0)
+__version__ = "1.6.3"
+__version_info__ = (1, 6, 3, 0)
 __author__ = 'WangWeimin'
 __author_email__ = 'wang0.618@qq.com'
 __license__ = 'MIT'