Skip to content

Commit b63e157

Browse files
committed
version 0.3
1 parent 7992e14 commit b63e157

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

.gitattributes

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ pywebio/html/codemirror/* linguist-vendored
66

77
pywebio/html/css/app.css -linguist-vendored
88

9-
docs/* linguist-documentation
9+
docs/* linguist-documentation
10+
11+
webiojs/package* linguist-generated

docs/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ Release notes
55
:maxdepth: 2
66

77
releases/v0.2.0
8+
releases/v0.3.0

docs/releases/v0.3.0.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
What's new in PyWebIO 0.3
2+
==========================
3+
4+
2020 5/13
5+
----------
6+
7+
Highlights
8+
^^^^^^^^^^
9+
10+
* 支持输出 bokeh 数据可视化图表, :ref:`文档 <visualization>`
11+
* 添加 :func:`session.get_info() <pywebio.session.get_info>` 获取会话相关信息
12+
* 前端js代码迁移typescript
13+
* `output.put_table() <pywebio.output.put_table>` 支持跨行/列单元格, 单元格内容支持使用 ``put_xxx`` 类输出函数
14+
15+
Detailed changes by module
16+
^^^^^^^^^^^^^^^^^^^^^^^^^^
17+
18+
UI
19+
~~~~~~~~~~~~~~
20+
21+
* 当与服务器连接断开时,点击前端的交互式按钮会报错提示。
22+
23+
24+
`pywebio.output`
25+
~~~~~~~~~~~~~~~~
26+
27+
* 锚点名字支持使用空格
28+
* 弃用 `table_cell_buttons() <pywebio.output.table_cell_buttons>`
29+
30+

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 web app in script way.'
33
__url__ = 'https://pywebio.readthedocs.io'
4-
__version__ = "0.2.0"
5-
__version_info__ = (0, 2, 0, 0)
4+
__version__ = "0.3.0"
5+
__version_info__ = (0, 3, 0, 0)
66
__author__ = 'WangWeimin'
77
__author_email__ = '[email protected]'
88
__license__ = 'MIT'

0 commit comments

Comments
 (0)