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]