Sharg 1.1.0 released
Dear SeqAn users, supporters, and subscribers,
We have just released a new Version of our C++ command line parsing lib: Sharg 1.1.0 Check it out on GitHub: https://github.com/seqan/sharg-parser
It includes a few major bug fixes and Gitpod and CWL support! Best update your apps now.
Features
- We support Gitpod. Click here to try it out.
- CWL support (Common Workflow Language): An app using Sharg can now automatically export a CWL tool
description file via
--export-help cwl
#94.
Bug fixes
- When using subcommand parsers, e.g.,
git push
, typinggit puhs -h
will raise an exception that the user misspelled the subcommand instead of printing the help page ofgit
(#172). - Fixed an issue that caused the validation of a directory via the
sharg::output_file_validator
to delete the directory’s contents (#175). - Segmentation fault when using
sharg::value_list_validator
in conjunction with astd::filesystem::path
option (#179).