This project follows semantic versioning. While still in major version 0,
source-stability is only guaranteed within minor versions (e.g. between
0.0.3 and 0.0.4). If you want to guard against potentially source-breaking
package updates, you can specify your package dependency using
.upToNextMinor(from: "0.3.0") as the requirement.
No changes yet.
0.3.1 - 2020-09-02
-
An option or flag can now declare a name with both single- and double- dash prefixes, such as
-my-flagand--my-flag. Specify both names in thenameparameter when declaring your property:@Flag(name: [.long, .customLong("my-flag", withSingleDash: true)]) var myFlag = false
-
Parsing performance improvements.
0.3.0 - 2020-08-15
- Shell completions scripts are now available for Fish.
-
Array properties without a default value are now treated as required for the user of a command-line tool. In previous versions of the library, these properties defaulted to an empty array; a deprecation was introduced for this behavior in version 0.2.0.
Migration: Specify an empty array as the default value for properties that should not require user input:
// old @Option var names: [String] // new @Option var names: [String] = []
The 0.3.0 release includes contributions from dduan, MPLew-is, natecook1000, and thomasvl. Thank you!
0.2.2 - 2020-08-05
- Zsh completion scripts have improved documentation and better support multi-word completion strings, escaped characters, non-standard executable locations, and empty help strings.
The 0.2.2 release includes contributions from interstateone, miguelangel-dev, natecook1000, stuartcarnie, and Wevah. Thank you!
0.2.1 - 2020-07-30
- You can now generate Bash and Zsh shell completion scripts for commands,
either by using the
--generate-completion-scriptflag when running a command, or by calling the staticcompletionScript(for:)method on a rootParsableCommandtype. See the guide to completion scripts for information on customizing and installing the completion script for your command.
- Property wrappers without parameters can now be written without parentheses
— e.g.
@Flag var verbose = false. - When displaying default values for array properties, the help screen now
correctly uses the element type's
ExpressibleByArgumentconformance to generate the description. - Running a project that defines a command as its own subcommand now fails with a useful error message.
The 0.2.1 release includes contributions from natecook1000, NicFontana, schlagelk, sharplet, and Wevah. Thank you!
0.2.0 - 2020-06-23
- You can now specify default values for array properties of parsable types. The default values are overridden if the user provides at least one value as part of the command-line arguments.
-
This release of
swift-argument-parserrequires Swift 5.2. -
Default values for all properties are now written using default initialization syntax, including some values that were previously implicit, such as empty arrays and
falsefor Boolean flags.Migration: Specify default values using typical Swift default value syntax to remove the deprecation warnings:
// old @Flag var verbose: Bool // new @Flag var verbose = false
Important: There is a semantic change for flags with inversions that do not have a default value. In previous releases, these flags had a default value of
false; starting in 0.2.0, these flags will have no default, and will therefore be required by the user. Specify a default value offalseto retain the old behavior.
- Options with multiple names now consistently show the first-declared name in usage and help screens.
- Default subcommands are indicated in the help screen.
- User errors with options are now shown before positional argument errors, eliminating some false negative reports.
- CMake compatibility fixes.
The 0.2.0 release includes contributions from artemnovichkov, compnerd, ibrahimoktay, john-mueller, MPLew-is, natecook1000, and owenv. Thank you!
0.1.0 - 2020-06-03
- Error messages and help screens now include information about how to request more help.
- CMake builds now support installation.
-
The
static func main()method onParsableCommandno longer returnsNever. This allowsParsableCommandtypes to be designated as the entry point for a Swift executable by using the@mainattribute.Migration: For most uses, this change is source compatible. If you have used
main()where a() -> Neverfunction is explicitly required, you'll need to change your usage or capture the method in another function. -
Optionalno longer conforms toExpressibleByArgument, to avoid some property declarations that don't make sense.Migration: This is source-compatible for all property declarations, with deprecations for optional properties that define an explicit default. If you're using optional values where an
ExpressibleByArgumenttype is expected, such as a generic function, you will need to change your usage or provide an explicit override. -
ParsableCommand'srun()method requirement is now amutatingmethod, allowing mutations to a command's properties, such as sorting an array of arguments, without additional copying.Migration: No changes are required for commands that are executed through the
main()method. If you manually parse a command and then call itsrun()method, you may need to change the command from a constant to a variable.
- The
@Flaginitializers that were deprecated in version 0.0.6 are now marked as unavailable.
@Optionproperties of an optional type that use atransformclosure now correctly indicate their optionality in the usage string.- Correct wrapping and indentation are maintained for abstracts and discussions with short lines.
- Empty abstracts no longer add extra blank lines to the help screen.
- Help requests are still honored even when a parsed command fails validation.
- The
--terminator isn't consumed when parsing a command, so that it can be parsed as a value when a subcommand includes an.unconditionalRemainingargument array. - CMake builds work correctly again.
The 0.1.0 release includes contributions from aleksey-mashanov, BradLarson, compnerd, erica, ibrahimoktay, and natecook1000. Thank you!
0.0.6 - 2020-05-14
- Command definition validation now checks for name collisions between options and flags.
ValidationError.messageis now publicly accessible.- Added an
EnumerableFlagprotocol forCaseIterabletypes that are used to provide the names for flags. When declaring conformance toEnumerableFlag, you can override the name specification and help text for individual flags. See #65 for more detail. - When a command that requires arguments is called with no arguments at all, the error message includes the full help text instead of the short usage string. This is intended to provide a better experience for first-time users.
- Added a
helpMessage()method for generating the help text for a command or subcommand.
-
@Flagproperties that useCaseIterable/Stringtypes as their values are deprecated, and the related@Flaginitializers will be removed in a future version.Migration: Add
EnumerableFlagconformance to the type of these kinds of@Flagproperties.
- Errors thrown while parsing in a
transformclosure are printed correclty instead of a generalInvalid stateerror. - Improvements to the guides and in the error message when attempting to access a value from an argument/option/flag definition.
- Fixed issues in the CMake and Windows build configurations.
- You can now use an
=to join a value with an option's short name when calling a command. This previously only worked for long names.
The 0.0.6 release includes contributions from compnerd, john-mueller, natecook1000, owenv, rjstelling, and toddthomas. Thank you!
0.0.5 - 2020-04-15
- You can now specify a version string in a
ParsableCommand's configuration. The generated tool will then automatically respond to a--versionflag. - Command definitions are now validated at runtime in debug mode, to check issues that can't be detected during compilation.
- Deprecation warnings during compilation on Linux have been removed.
- The
validate()method is now called on each command in the matched command stack, instead of only the last command in the stack.
The 0.0.5 release includes contributions from kennyyork, natecook1000, sgl0v, and YuAo. Thank you!
0.0.4 - 2020-03-23
- Removed usage of 5.2-only syntax.
0.0.3 - 2020-03-22
- You can specify the
.unconditionalRemainingparsing strategy for arrays of positional arguments to accept dash-prefixed input, likeexample --one two -three. - You can now provide a default value for a positional argument.
- You can now customize the display of default values in the extended help for
an
ExpressibleByArgumenttype. - You can call the static
exitCode(for:)method on any command to retrieve the exit code for a given error.
- Supporting targets are now prefixed to prevent conflicts with other libraries.
- The extension providing
init?(argument:)toRawRepresentabletypes is now properly constrained. - The parser no longer treats passing the same exclusive flag more than once as an error.
ParsableArgumentstypes that are declared as@OptionGroupproperties on commands can now also be declared on subcommands. Previosuly, the parent command's declaration would prevent subcommands from seeing the user-supplied arguments.- Default values are rendered correctly for properties with
Optionaltypes. - The output of help requests is now printed during the "exit" phase of execution, instead of during the "run" phase.
- Usage strings now correctly show that optional positional arguments aren't required.
- Extended help now omits extra line breaks when displaying arguments or commands with long names that don't provide help text.
The 0.0.3 release includes contributions from compnerd, elliottwilliams, glessard, griffin-stewie, iainsmith, Lantua, miguelangel-dev, natecook1000, sjavora, and YuAo. Thank you!
0.0.2 - 2020-03-06
- The
EX_USAGEexit code is now used for validation errors. - The parser provides near-miss suggestions when a user provides an unknown option.
ArgumentParsernow builds on Windows.- You can throw an
ExitCodeerror to exit without printing any output. - You can now create optional Boolean flags with inversions that default to
nil:@Flag(inversion: .prefixedNo) var takeMyShot: Bool?
- You can now specify exclusivity for case-iterable flags and for Boolean flags with inversions.
- Cleaned up a wide variety of documentation typos and shortcomings.
- Improved different kinds of error messages:
- Duplicate exclusive flags now show the duplicated arguments.
- Subcommand validation errors print the correct usage string.
- In the help screen:
- Removed the extra space before the default value for arguments without descriptions.
- Removed the default value note when the default value is an empty string.
- Default values are now shown for Boolean options.
- Case-iterable flags are now grouped correctly.
- Case-iterable flags with default values now show the default value.
- Arguments from parent commands that are included via
@OptionGroupin subcommands are no longer duplicated.
- Case-iterable flags created with the
.chooseFirstexclusivity parameter now correctly ignore additional flags.
The 0.0.2 release includes contributions from AliSoftware, buttaface, compnerd, dduan, glessard, griffin-stewie, IngmarStein, jonathanpenn, klaaspieter, natecook1000, Sajjon, sjavora, Wildchild9, and zntfdr. Thank you!
0.0.1 - 2020-02-27
ArgumentParserinitial release.
This changelog's format is based on Keep a Changelog.