Skip to content

Commit 694fe09

Browse files
committed
release v1.8.4
1 parent 5b5f7e0 commit 694fe09

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cp dist/pywebio.min.js ../pywebio/html/js
2929
- name: PyPi Upload
3030
run: |
31-
pip3 install twine
31+
pip3 install twine setuptools
3232
python3 setup.py sdist
3333
twine upload --username "__token__" --disable-progress-bar --verbose dist/*
3434
env:

docs/releases/v1.8.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,9 @@ v1.8.2 (2023/4/22)
4242

4343
v1.8.3 (2023/10/30)
4444
---------------------
45-
* fix (`#614 <https://github.com/pywebio/PyWebIO/pull/614>`_) `input_group()` return invalid result when canceled
45+
* fix (`#614 <https://github.com/pywebio/PyWebIO/pull/614>`_) `input_group()` return invalid result when canceled
46+
47+
v1.8.4 (2025/04/04)
48+
---------------------
49+
* fix (`#687 <https://github.com/pywebio/PyWebIO/issues/687>`_) `put_datatable()` doesn't work due to CDN issues
50+
* Support to get multiple pin values at one time (`#652 <https://github.com/pywebio/PyWebIO/issues/652>`_)

pywebio/__version__.py

+2-2
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.8.3"
5-
__version_info__ = (1, 8, 3, 0)
4+
__version__ = "1.8.4"
5+
__version_info__ = (1, 8, 4, 0)
66
__author__ = 'WangWeimin'
77
__author_email__ = '[email protected]'
88
__license__ = 'MIT'

0 commit comments

Comments
 (0)