diff --git a/jc/parsers/semver.py b/jc/parsers/semver.py index 3660e3e9..37e509ec 100644 --- a/jc/parsers/semver.py +++ b/jc/parsers/semver.py @@ -2,6 +2,8 @@ This parser conforms to the specification at https://semver.org/ +See also: `ver` parser. + Usage (cli): $ echo 1.2.3-rc.1+44837 | jc --semver diff --git a/jc/parsers/ver.py b/jc/parsers/ver.py index 25013c65..f1e6361a 100644 --- a/jc/parsers/ver.py +++ b/jc/parsers/ver.py @@ -12,6 +12,8 @@ All other version strings will have a `strict` value of `false` and a `components` key will contain a list of detected parts of the version string. +See Also: `semver` parser. + Usage (cli): $ echo '1.2b' | jc --ver