瀏覽代碼

release v1.8.4

wangweimin 1 月之前
父節點
當前提交
694fe09e12
共有 3 個文件被更改,包括 9 次插入4 次删除
  1. 1 1
      .github/workflows/release.yml
  2. 6 1
      docs/releases/v1.8.rst
  3. 2 2
      pywebio/__version__.py

+ 1 - 1
.github/workflows/release.yml

@@ -28,7 +28,7 @@ jobs:
           cp dist/pywebio.min.js ../pywebio/html/js
       - name: PyPi Upload
         run: |
-          pip3 install twine
+          pip3 install twine setuptools
           python3 setup.py sdist
           twine upload --username "__token__" --disable-progress-bar --verbose dist/*
         env:

+ 6 - 1
docs/releases/v1.8.rst

@@ -42,4 +42,9 @@ v1.8.2 (2023/4/22)
 
 v1.8.3 (2023/10/30)
 ---------------------
-* fix (`#614 <https://github.com/pywebio/PyWebIO/pull/614>`_) `input_group()` return invalid result when canceled
+* fix (`#614 <https://github.com/pywebio/PyWebIO/pull/614>`_) `input_group()` return invalid result when canceled
+
+v1.8.4 (2025/04/04)
+---------------------
+* fix (`#687 <https://github.com/pywebio/PyWebIO/issues/687>`_) `put_datatable()` doesn't work due to CDN issues
+* Support to get multiple pin values at one time (`#652 <https://github.com/pywebio/PyWebIO/issues/652>`_)

+ 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.8.3"
-__version_info__ = (1, 8, 3, 0)
+__version__ = "1.8.4"
+__version_info__ = (1, 8, 4, 0)
 __author__ = 'WangWeimin'
 __author_email__ = 'wang0.618@qq.com'
 __license__ = 'MIT'