浏览代码

release v1.5.2

wangweimin 3 年之前
父节点
当前提交
ecaae368c5
共有 2 个文件被更改,包括 6 次插入2 次删除
  1. 4 0
      docs/releases/v1.5.rst
  2. 2 2
      pywebio/__version__.py

+ 4 - 0
docs/releases/v1.5.rst

@@ -44,3 +44,7 @@ v1.5.1 (2021/12/21)
 * fix spawn 2 remote access processes when enable debug in flask backed - `073f8ace <https://github.com/pywebio/PyWebIO/commit/073f8ace680b8cd6b9d891fc6c056555be9ba9ae>`_
 
 
+v1.5.2 (2021/12/30)
+----------------------
+* fix `#243 <https://github.com/pywebio/PyWebIO/issues/243>`_: thread keep alive after session closed
+* fix `#247 <https://github.com/pywebio/PyWebIO/issues/247>`_: can't use coroutine callback in `put_button()`

+ 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.5.1"
-__version_info__ = (1, 5, 1, 0)
+__version__ = "1.5.2"
+__version_info__ = (1, 5, 2, 0)
 __author__ = 'WangWeimin'
 __author_email__ = 'wang0.618@qq.com'
 __license__ = 'MIT'