Skip to content

Commit 6df7ecd

Browse files
authored
pre for 1.0.1 release (#1062)
1 parent 403e5f2 commit 6df7ecd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/py/reactpy/reactpy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from reactpy.utils import Ref, html_to_vdom, vdom_to_html
2222

2323
__author__ = "The Reactive Python Team"
24-
__version__ = "1.0.0" # DO NOT MODIFY
24+
__version__ = "1.0.1" # DO NOT MODIFY
2525

2626
__all__ = [
2727
"backend",

tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ def parse_tag(tag: str) -> TagInfo:
353353
raise Exit(msg)
354354

355355
version = match.group("version")
356-
if not semver.Version.is_valid(version):
356+
if not semver.VersionInfo.isvalid(version):
357357
raise Exit(f"Invalid version: {version} in tag {tag}")
358358

359359
return TagInfo(tag=tag, name=match.group("name"), version=match.group("version"))

0 commit comments

Comments
 (0)