What's Changed
- Add fish, PowerShell, and Nushell completion support by @integrii in https://github.com/integrii/flaggy/pull/102
Full Changelog: https://github.com/integrii/flaggy/compare/v1.7.1...v1.8.0
Unclaimed project
Are you a maintainer of flaggy? Claim this project to take control of your public changelog and roadmap.
Changelog
Idiomatic Go input parsing with subcommands, positional values, and flags at any position. No required project or package layout and no external dependencies.
Full Changelog: https://github.com/integrii/flaggy/compare/v1.7.1...v1.8.0
This is a follow up v1.7.0 release after rapid re-release of v1.6.0 tag caused go module caching error. This release addresses nearly all known issues and proposed feature additions of Flaggy while retaining a no-dependency policy.
🎉 First release since May 2022 thanks to AI! 🎉
./app -f one,two,three and ./ -f one -f two -f three will produce three values in the slice. #90If you would like to use a variable number of arguments at the end of your program without the user specifying -- before the list, you can do this by setting flaggy.ShowHelpOnUnexpectedDisable() and then parsing the []string at flaggy.TrailingArguments. For more details, see Issue #79