v0.6.0
- Added support for
DelimitedStringsOption
which allows the CLI to process options likecommand --inputs="a,b,c --inputs="x,y,z"
as[]string{"a","b","c","x","y","z"}
. - Added strictness + panics if trying to use an incorrect default option (e.g.
StringOption("string", "s", "a string").WithDefault(5)
)