From 2749c0c930fb9b464d37b5a1c2c56627f52619f6 Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Sat, 23 Nov 2024 18:56:56 -0800 Subject: [PATCH] v1.1.0 --- docs/source/about/changelog.rst | 5 +++++ src/py/reactpy/reactpy/__init__.py | 11 +++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/source/about/changelog.rst b/docs/source/about/changelog.rst index 8768c5160..fd91cdf19 100644 --- a/docs/source/about/changelog.rst +++ b/docs/source/about/changelog.rst @@ -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`` diff --git a/src/py/reactpy/reactpy/__init__.py b/src/py/reactpy/reactpy/__init__.py index c47142cd8..d54e82174 100644 --- a/src/py/reactpy/reactpy/__init__.py +++ b/src/py/reactpy/reactpy/__init__.py @@ -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", @@ -52,8 +51,8 @@ "use_ref", "use_scope", "use_state", - "vdom_to_html", "vdom", + "vdom_to_html", "web", "widgets", ]