Skip to content

Commit

Permalink
v1.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wang0618 committed Mar 24, 2022
1 parent faf5bf2 commit 17f7d87
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 2

releases/v1.6
releases/v1.5
releases/v1.4
releases/v1.3.0
Expand Down
23 changes: 23 additions & 0 deletions docs/releases/v1.6.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
What's new in PyWebIO 1.6
==========================

2022/3/23
-----------

Highlights
^^^^^^^^^^^
* add :func:`pywebio.pin.pin_on_change() <pywebio.pin.pin_on_change>`

Detailed changes
^^^^^^^^^^^^^^^^^
* use `bootstrap-select <https://github.com/snapappointments/bootstrap-select/>`_ to provide more user-friendly select input
* add `pin.pin.use_strict()` to enable strict mode for getting pin widget value
* Persian language support for default labels, thanks to `Pikhosh <https://github.com/pikhosh>`_
* add color input type (`#310 <https://github.com/pywebio/PyWebIO/discussions/310>`_)
* add input check on number and float type input

Bug fix
^^^^^^^^^^^^^^^^^
* fix: uncaught `SessionClosedException` in callback of thread-based session
* fix(`#313 <https://github.com/pywebio/PyWebIO/discussions/313>`_): slider value label don't sync when set value

4 changes: 2 additions & 2 deletions pywebio/__version__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
__package__ = 'pywebio'
__description__ = 'Write interactive web app in script way.'
__url__ = 'https://pywebio.readthedocs.io'
__version__ = "1.5.2"
__version_info__ = (1, 5, 2, 0)
__version__ = "1.6.0"
__version_info__ = (1, 6, 0, 0)
__author__ = 'WangWeimin'
__author_email__ = '[email protected]'
__license__ = 'MIT'

0 comments on commit 17f7d87

Please sign in to comment.