Skip to content

Commit 7a6c31e

Browse files
authored
v1.1.0 (#1244)
1 parent 7d47f4f commit 7a6c31e

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

docs/source/about/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ Changelog
1818
Unreleased
1919
----------
2020

21+
Nothing (yet)!
22+
23+
v1.1.0
24+
------
25+
2126
**Fixed**
2227

2328
- :pull:`1118` - ``module_from_template`` is broken with a recent release of ``requests``

src/py/reactpy/reactpy/__init__.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,22 @@
2222
from reactpy.utils import Ref, html_to_vdom, vdom_to_html
2323

2424
__author__ = "The Reactive Python Team"
25-
__version__ = "1.0.2" # DO NOT MODIFY
25+
__version__ = "1.1.0"
2626

2727
__all__ = [
28+
"Layout",
29+
"Ref",
2830
"backend",
2931
"component",
3032
"config",
3133
"create_context",
3234
"event",
3335
"hooks",
34-
"html_to_vdom",
3536
"html",
36-
"Layout",
37+
"html_to_vdom",
3738
"logging",
38-
"Ref",
3939
"run",
4040
"sample",
41-
"Stop",
4241
"svg",
4342
"types",
4443
"use_callback",
@@ -52,8 +51,8 @@
5251
"use_ref",
5352
"use_scope",
5453
"use_state",
55-
"vdom_to_html",
5654
"vdom",
55+
"vdom_to_html",
5756
"web",
5857
"widgets",
5958
]

0 commit comments

Comments
 (0)