MCPcopy Create free account
hub / github.com/apache/fory / _is_release_version

Function _is_release_version

ci/release.py:1013–1017  ·  view source on GitHub ↗
(v: str)

Source from the content-addressed store, hash-verified

1011
1012
1013def _is_release_version(v: str) -> bool:
1014 v = v.strip()
1015 if v.startswith("v"):
1016 v = v[1:]
1017 return re.match(r"^\d+\.\d+\.\d+$", v) is not None
1018
1019
1020def _normalize_rust_version(v: str) -> str:

Callers 1

bump_dart_versionFunction · 0.85

Calls 1

matchMethod · 0.45

Tested by

no test coverage detected