Skip to content

Commit 17f7d87

Browse files
committed
v1.6 release
1 parent faf5bf2 commit 17f7d87

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

docs/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release notes
44
.. toctree::
55
:maxdepth: 2
66

7+
releases/v1.6
78
releases/v1.5
89
releases/v1.4
910
releases/v1.3.0

docs/releases/v1.6.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
What's new in PyWebIO 1.6
2+
==========================
3+
4+
2022/3/23
5+
-----------
6+
7+
Highlights
8+
^^^^^^^^^^^
9+
* add :func:`pywebio.pin.pin_on_change() <pywebio.pin.pin_on_change>`
10+
11+
Detailed changes
12+
^^^^^^^^^^^^^^^^^
13+
* use `bootstrap-select <https://github.com/snapappointments/bootstrap-select/>`_ to provide more user-friendly select input
14+
* add `pin.pin.use_strict()` to enable strict mode for getting pin widget value
15+
* Persian language support for default labels, thanks to `Pikhosh <https://github.com/pikhosh>`_
16+
* add color input type (`#310 <https://github.com/pywebio/PyWebIO/discussions/310>`_)
17+
* add input check on number and float type input
18+
19+
Bug fix
20+
^^^^^^^^^^^^^^^^^
21+
* fix: uncaught `SessionClosedException` in callback of thread-based session
22+
* fix(`#313 <https://github.com/pywebio/PyWebIO/discussions/313>`_): slider value label don't sync when set value
23+

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.5.2"
5-
__version_info__ = (1, 5, 2, 0)
4+
__version__ = "1.6.0"
5+
__version_info__ = (1, 6, 0, 0)
66
__author__ = 'WangWeimin'
77
__author_email__ = 'wang0.618@qq.com'
88
__license__ = 'MIT'

0 commit comments

Comments
 (0)