You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wonder whether it was possible that version is non-null, but date is null (because the separator is not known)
This might be too complex. Feel free to close the issue. My usecase works with --separator=–. Just wanted to share some ideas for "know-less" tooling :).
The text was updated successfully, but these errors were encountered:
Hi @koppor, this is happening because in order to parse the release information from the header I'm first splitting by the separator, i.e. –. Then the left and right hand sides are parsed as the version and the date.
Without knowing the correct separator at runtime, it does not attempt to parse the heading.
I'm not sure there's much reason to try and implement some sort of "separator guessing" here, or to potentially parse it differently.
Follow-up to #22. Minor issue.
works great
clparse --format=json
always outputs
null
as version.I wonder whether it was possible that
version
is non-null, butdate
is null (because the separator is not known)This might be too complex. Feel free to close the issue. My usecase works with
--separator=–
. Just wanted to share some ideas for "know-less" tooling :).The text was updated successfully, but these errors were encountered: