We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's a reduced set of a Changes file I think should parse, but completely doesn't, and the error is not exactly enlightening.
0.048 - Asdf
mbtiny dist # Changes appears to be empty
The text was updated successfully, but these errors were encountered:
According to the logic, it seems to be parsing the structure as
0.048 # BLOCK START - Asdf # BLOCK STOP
where it shouldn't be caring that - Asdf is not indented (\S)
- Asdf
\S
Instead, it should be continuing until the next line that starts with a version group, so ^\d
^\d
Sorry, something went wrong.
The logic is stolen straight out of dzil's CheckChangesHasContent, the same change should probably be done there.
CPAN::Changes matches against $version::LAX, which may actually be quite sensible too.
$version::LAX
No branches or pull requests
Here's a reduced set of a Changes file I think should parse, but completely doesn't, and the error is not exactly enlightening.
mbtiny dist # Changes appears to be empty
The text was updated successfully, but these errors were encountered: