We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 403e5f2 commit 6df7ecdCopy full SHA for 6df7ecd
src/py/reactpy/reactpy/__init__.py
@@ -21,7 +21,7 @@
21
from reactpy.utils import Ref, html_to_vdom, vdom_to_html
22
23
__author__ = "The Reactive Python Team"
24
-__version__ = "1.0.0" # DO NOT MODIFY
+__version__ = "1.0.1" # DO NOT MODIFY
25
26
__all__ = [
27
"backend",
tasks.py
@@ -353,7 +353,7 @@ def parse_tag(tag: str) -> TagInfo:
353
raise Exit(msg)
354
355
version = match.group("version")
356
- if not semver.Version.is_valid(version):
+ if not semver.VersionInfo.isvalid(version):
357
raise Exit(f"Invalid version: {version} in tag {tag}")
358
359
return TagInfo(tag=tag, name=match.group("name"), version=match.group("version"))
0 commit comments