Skip to content
Merged

v1.1.0 #1244

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/source/about/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ Changelog
Unreleased
----------

Nothing (yet)!

v1.1.0
------

**Fixed**

- :pull:`1118` - ``module_from_template`` is broken with a recent release of ``requests``
Expand Down
11 changes: 5 additions & 6 deletions src/py/reactpy/reactpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,22 @@
from reactpy.utils import Ref, html_to_vdom, vdom_to_html

__author__ = "The Reactive Python Team"
__version__ = "1.0.2" # DO NOT MODIFY
__version__ = "1.1.0"

__all__ = [
"Layout",
"Ref",
"backend",
"component",
"config",
"create_context",
"event",
"hooks",
"html_to_vdom",
"html",
"Layout",
"html_to_vdom",
"logging",
"Ref",
"run",
"sample",
"Stop",
"svg",
"types",
"use_callback",
Expand All @@ -52,8 +51,8 @@
"use_ref",
"use_scope",
"use_state",
"vdom_to_html",
"vdom",
"vdom_to_html",
"web",
"widgets",
]
Loading