From d3deade107019e90a1150f549be879b320a38ad5 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Fri, 21 Jul 2023 12:00:55 -0700 Subject: [PATCH] Bump version to 0.2.2 (#1400) --- pyproject.toml | 2 +- reflex/app.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 89241a975..9d1d60318 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "reflex" -version = "0.2.1" +version = "0.2.2" description = "Web apps in pure Python." license = "Apache-2.0" authors = [ diff --git a/reflex/app.py b/reflex/app.py index bad0e3097..a9f2487e0 100644 --- a/reflex/app.py +++ b/reflex/app.py @@ -117,7 +117,8 @@ class App(Base): ) if self.state != DefaultState: console.deprecate( - "Passing the state as keyword argument to `rx.App` is deprecated." + "Passing the state as keyword argument to `rx.App` is deprecated. " + "The base state will automatically be inferred as the subclass of `rx.State`." ) self.state = state_subclasses[-1]