# CHANGELOG ## [Unreleased] --- ## [1.7.1] - 2026-03-20 ### Changes - Adds detailed documentation for providing descriptions of enum values. ([#825]) - Adds `aliases` to the dump-help output. ([#813]) - Improves zsh completions; prevents bash completion cleanup commands from being appended to shell history. ([#864], [#859]) - Eliminates deprecation warnings in `Examples/math`. ([#879]) ### Fixes - Fixes build issues in Swift 5.7-5.9. ([#874], [#875]) - Fixes `--help` output for nested subcommands with default subcommands. ([#866]) - Prevents `@OptionGroup` type names from appearing in help usage strings. ([#873]) - Fixes handling of visibility with nested option groups. ([#838]) - Updates GitHub Actions workflows and streamlines the required checks. ([#839], [#843], [#844], [#853], [#856], [#857], [#876], [#877]) The 1.7.0 release includes contributions from [bkhouri], [bob-wilson], [jglogan], [kphrx], [louisunlimited], [natecook1000], [rauhul], [rgoldberg], [salmanmkc], [stackotter], and [William-Laverty]. Thank you! ## [1.7.0] - 2025-12-17 ### Additions - Access the state of an ancestor command using the new `@ParentCommand` property wrapper. ([#802]) ### Fixes - Corrects the help display for an case iterable option value type. ([#821]) - Fixes ArgumentParser build failure for WASI (WebAssembly System Interface). ([#794]) - Updates help text for readability in Repeat example and README. ([#787]) - Provides an ambiguity breaker for some `ExpressibleByArgument` types. ([#841]) - Shell completion script fixes. ([#801], [#808], [#811]) ### Changes - `docc`: Updates the output to present the string representation of command arguments as a wrapped text block. ([#791]) - Uses Foundation Essentials when possible to reduce binary size on non-Darwin platforms. ([#804]) - CMake: Suppress needlessly alarming messages. ([#628]) The 1.7.0 release includes contributions from [bkhouri], [cmcgee1024], [dabrahams], [heckj], [incertum], [kkebo], [Konstantin-Krokhin], [natecook1000], [rauhul], [rgoldberg], and [tshortli]. Thank you! --- ## [1.6.2] - 2025-10-01 ### Fixes - Fixes an ArgumentParser build failure for WASI. ([#794]) ## [1.6.1] - 2025-07-01 ### Fixes - Resolves a source break for clients that have conditional conformances to `ExpressibleByArgument` or `ParsableArguments`. ([#792]) ## [1.6.0] - 2025-06-30 ### Additions - Options with `CaseIterable` types can now provide help descriptions on a per-value basis. ([#647]) - New API for accessing the shell and shell version while generating completions. ([#680], [#690]) - The `generate-docc-reference` plugin generates a DocC reference folder for your CLI tool. ([#694], [#754], [#773]) ### Changes - Testing and continuous integration improvements, including migrating to GitHub workflows. ([#692], [#693], [#696], [#698], [#699], [#700], [#701], [#708], [#711], [#718], [#716], [#714], [#712], [#732], [#730], [#746], [#747], [#760]) - The associated closure for `CompletionKind.custom` now takes three parameters: the array of shell words currently in use for the completion request, the offset in that array for the word that completions are being requested for, and the prefix of that word that precedes the cursor. In addition, the associated closure can be `async`. The single-argument closure version of `CompletionKind.custom` is deprecated with this release. ([#763], [#770], [#782]) - `ParsableArguments` and `ExpressibleByArgument` now conform to `SendableMetatype` when builing with a minimum Swift 6.2 compiler. ([#789]) ### Fixes - Significant fixes and improvements across the entire completion script generation system, too numerous to mention here. Please note: numerous longstanding issues still remain in the completion scripts (mainly involving quoting/escaping); they will be fixed over time. A special thanks to @rgoldberg for the investment in completion script quality! ([#727], [#735], [#738], [#740], [#762], [#763], [#775], [#770], [#777], [#767]) - Improvements to `generate-manual` plugin. ([#663], [#667]) - Error messaging when a user provides a single-dash option is now improved, along with other error reporting improvements. ([#728], [#744]) - Implementation improvements and fixes for both older and newer versions of Swift. ([#676], [#707], [#705], [#720], [#666], [#724], [#731], [#766], [#685], [#729], [#736], [#741]) - Better capturing of tool configuration in `ToolInfo`. ([#669], [#697]) - Documentation improvements. ([#657], [#678], [#743]) The 1.6.0 release includes contributions from [bripeticca], [cg-soft], [compnerd], [dshan4585], [heckj], [natecook1000], [rauhul], [rgoldberg], and [Steelskin]. Thank you! --- ## [1.5.1] - 2025-05-28 ### Fixes - Relax the CMake build system to allow implicit linking of Foundation and XCTest when not explicitly given the associated build tree. ([#783]) The 1.5.1 release includes a contribution from [compnerd]. Thank you! ## [1.5.0] - 2024-07-18 ### Additions - Subcommands can now be grouped into sections to enable a better help display for commands with many subcommands. ([#644]) - Improved unofficial support for Android and riscv64 platforms. ([#649], [#651]) ### Fixes - Command-line completion scripts correctly complete for arguments that are included via option group. ([#648]) - Several warnings when compiling with strict concurrency enabled, or in Swift 6 language mode, are now silenced. ([#650]) The 1.5.0 release includes contributions from [CraigSiemens], [DougGregor], [finagolfin], [futurejones], and [natecook1000]. Thank you! --- ## [1.4.0] - 2024-05-21 ### Additions - Adds support for subcommand aliases via a new `CommandConfiguration.aliases` parameter. Aliases are shown in help text and used during command parsing. For example, a subcommand like "average" from the example "math" tool can be defined with the aliases `["avg"]`. The resulting subcommand can now be invoked with either of `math stats average` and ``math stats avg`. See the updated documentation and example for additional details. ([#627]) - Adds a new API `usageString` to `ParsableArguments` and `ParsableCommand` for retrieving their usage text, allowing for more flexible construction of error screens. ([#634]) - Adds support for passing custom arguments to `AsyncParsableCommand.main()` with a new `static func main(_ arguments: [String]?) async` method. ([#568]) ### Fixes - Removes default parameter values from deprecated CommandConfiguration initializers to prevent them from being selected as overloads. Some niche invalid deprecation warnings should no longer occur. ([#636]) The 1.4.0 release includes contributions from [Austinpayne], [dcantah], [KS1019], [natecook1000], [rauhul], and [revolter]. Thank you! ## [1.3.1] - 2024-03-16 ### Changes - The `CommandConfiguration` type is now designated as `Sendable`. ([#615]) - The library uses `internal` imports instead of `@_implementationOnly` annotations in Swift versions where permitted. ([#616]) ### Fixes - `@Option`- and `@Argument`-annotated optional properties that use a `transform` closure for parsing can now be declared without ambiguity. ([#619]) - The help flag is now recognized more consistently when a default subcommand has been specified. ([#612]) - Options that use the `.upToNextOption` parsing strategy can now recognize an attached value (e.g. `--numbers=1 2 3`). ([#610]) - Generated completion scripts for `zsh` handle repeatable options correctly. ([#614]) - Documentation improvements and clarifications. ([#607], [#611], [#617], [#621]) - Build improvements for CMake builds. ([#606], [#608]) The 1.3.1 release includes contributions from [Coeur], [compnerd], [keith], [MaxDesiatov], [mayoff], and [natecook1000]. Thank you! ## [1.3.0] - 2023-12-06 ### Changes - The `@Option`, `@Argument`, `@Flag`, and `@OptionGroup` property wrappers now conditionally conform to `Sendable` when the wrapper's `Value` type conforms. With this change, you can mark `ParsableCommand` types as `Sendable` when you want to be able to pass a parsed command across concurrent contexts. ([#582]) *Migration:* Users that aren't ready to resolve sendability warnings can add the `@preconcurrency` attribute to `import ArgumentParser` statements. As part of this update, changes to the `CommandLine.arguments` array before a command's `main` or `parse...` methods are called are no longer observed. Instead of making changes to `CommandLine.arguments`, pass an updated array of arguments to the command's method. - To support migration to `Sendable` annotation, the minimum Swift version for `swift-argument-parser` has been increased to Swift 5.7. Users of older Swift versions will be able to continue using version 1.2.3 of the library. ([#582]) ### Additions - Help screens now include possible options for `ExpressibleByArgument` types with non-empty `allValueStrings`. Types also conforming to `CaseIterable` do not need to manually implement `allValueStrings`, instead it is derived from `allCases`. ([#594]) ### Fixes - The titles for nested option groups are preserved when embedded into commands without specifying a new title. ([#592]) - When wrapping help and error messages, the library now uses the `COLUMNS` environment variable when set, instead of immediately falling back to 80 columns. ([#596]) - Bash completion scripts now respect the extensions given in a `.file(...)` completion kind. ([#590]) - Bash completion scripts now properly escape command names that include hyphens. ([#573]) - Documentation improvements. ([#572], [#565], [#602]) The 1.3.0 release includes contributions from [Alkenso], [compnerd], [gwynne], [kennyyork], [natecook1000], [rauhul], [robertmryan], and [vlm]. Thank you! --- ## [1.2.3] - 2023-08-15 ### Additions - You can now use ArgumentParser with Musl libc. ([#574]) ### Fixes - Fixes a bug where single-page manuals did not include command abstracts for subcommands. ([#552]) - Fixes a bug where non-optional properties in ParsableCommands could cause ArgumentParser to crash. You can now include properties like dictionaries in ParsableCommands without issue. ([#554]) - Fixes a configuration issue which would cause `ArgumentParserTestHelpers` to fail to link when building for Windows. ([#579]) The 1.2.3 release includes contributions from [compnerd], [gwynne], [MaxDesiatov], [natecook1000], and [rauhul]. Thank you! ## [1.2.2] - 2023-02-09 ### Fixes - Arguments with the `.allUnrecognized` parsing strategy no longer consume built-in flags like `--help` and `--version`. ([#550]) - Fixes an issue introduced in version 1.2.0 where properties with underscored names couldn't be parsed. ([#548]) - Improves the error message for cases where platform availability causes the synchronous `ParsableCommand.main()` static method to be run on an `AsyncParsableCommand` type. ([#547]) ## [1.2.1] - 2023-01-12 ### Changes - Documentation is now primarily hosted at the [Swift Package Index](https://swiftpackageindex.com/apple/swift-argument-parser). ### Fixes - `exit(_:)` no longer causes infinite recursion on the WASI platform. ([#520]) - Completion scripts for `fish` now provide completions after a non-hyphen-prefixed argument has been provided. ([#535]) - Overload selection for custom `ExpressibleByArgument` types has been improved. ([#522]) - The usage string for `.postTerminator` arguments now includes the required terminator (`--`). ([#542]) - Documentation and testing fixes and improvements. The 1.2.1 release includes contributions from [Chamepp], [kkk669], [mtj0928], [natecook1000], [rauhul], [rickrizzo], [TiagoMaiaL], and [yim-lee]. Thank you! ## [1.2.0] - 2022-11-08 ### Additions - You can now provide a title in an `@OptionGroup` declaration. Titled option groups are listed separately in the help screen under that title as a heading. ([#492]) - Two new parsing strategies have been added for `@Argument` array properties: - `.allUnrecognized` captures all unrecognized inputs after parsing known flags, options, and arguments. - `.postTerminator` collects any inputs that follow the `--` terminator. See the [`ArgumentArrayParsingStrategy` documentation][arrayparse-docs] for more. ([#496]) - Default values are now supported for `@Argument` or `@Option` properties with optional type, allowing you to initialize those properties with `nil`. Providing a non-`nil` default value results in a warning, since optional properties with non-`nil` defaults don't need to be declared as optionals. ([#477], [#480]) ### Changes - The `.unconditionalRemaining` array parsing strategy has been deprecated and renamed to `.captureForPassthrough`, to better fit its semantic behavior and intended usage. See the [`ArgumentArrayParsingStrategy` documentation][arrayparse-docs] for more. ([#496]) ### Fixes - Invalid `init(from:)` decoding initializers are now correctly diagnosed by ArgumentParser's validators. ([#487]) - Default values are now correctly displayed as flags for `@Flag` properties with inversions or `EnumerableFlag` types. ([#486]) - The help display for non-string-backed raw representable types has been corrected to not show raw Swift values. Instead, the help display uses the type's customized `defaultValueDescription` and `allValues` implementations. ([#494]) - Properties at different levels of a command hierarchy with the same Swift name but different argument names no longer collide. ([#495]) - The `generate-manual` plugin name is improved when used from within Xcode. ([#505]) - Documentation fixes and improvements. The 1.2.0 release includes contributions from [allevato], [clayellis], [compnerd], [d-ronnqvist], [natecook1000], [randomeizer], and [rauhul]. Thank you! [arrayparse-docs]: https://swiftpackageindex.com/apple/swift-argument-parser/documentation/argumentparser/argumentarrayparsingstrategy --- ## [1.1.4] - 2022-08-26 ### Changes - The generate-manual plugin now defaults to creating single-page manuals. The `--single-page` flag has been replaced with `--multi-page` to restore the previous default functionality. ([#472]) *Migration:* Update scripts that invoked generate-manual without `--single-page` to include `--multi-page` and update scripts that invoked generate-manual with `--single-page` to omit the flag. - The "experimental" prefix from the generate-manual plugin has been removed. ([#475]) *Migration:* Update scripts to invoke the generate-manual plugin via `swift package generate-manual` instead of `swift package plugin experimental-generate-manual`. ### Fixes - The generate-manual plugin is correctly declared as a product, making the plugin visible to clients. ([#456]) - The generate-manual plugin's `--authors` arguments are now correctly passed to the underlying generation tool. ([#471]) - Manuals generated by the generate-manual plugin now include the option's value names and do not include value names for flags. ([#473]) - Built-in flags such as `--help` and `--version` are now correctly marked as optional, fixing some generated content that indicated the flags are always required. ([#474]) - Value descriptions are now correctly derived for types which are `ExpressibleByArgument` and `RawRepresentable` by `String`. Help menus will now display valid default values for such types. ([#476]) The 1.1.4 release includes contributions from [ian-twilightcoder], [MarcoEidinger], and [rauhul]. Thank you! ## [1.1.3] - 2022-06-23 ### Additions - `ArgumentParser` now includes a SwiftPM plugin for generating `man` pages. Explore the functionality and configuration by running `swift package plugin experimental-generate-manual --help` from your package root. ([#332]) ### Fixes - Hidden subcommands are now excluded from completion scripts. ([#443]) - When an invalid value is provided for a `CaseIterable` type, the error message now includes a list of valid inputs. ([#445]) - There's now a diagnostic when an `AsyncParsableCommand` is incorrectly placed under a non-`async` root command. ([#436]) The 1.1.3 release includes contributions from [keith], [KeithBird], [konomae], [LucianoPAlmeida], and [rauhul]. Thank you! ## [1.1.2] - 2022-04-11 ### Changes - CMake builds now always statically links `ArgumentParserToolInfo`. ([#424]) ### Fixes - When a user provides an array-based option's key (e.g. `--key`) without any values, the error message now correctly describes the problem. ([#435]) The 1.1.2 release includes contributions from [compnerd] and [KeithBird]. Thank you! ## [1.1.1] - 2022-03-16 ### Fixes - Moves the platform requirement from the package level down to the new types and protocols with `async` members. This was a source-breaking change in 1.1.0. ([#427]) - Fixed issues in the CMake build configuration. ## [1.1.0] - 2022-03-14 ### Additions - A command's `run()` method now supports `async`/`await` when the command conforms to `AsyncParsableCommand`. ([#404]) - New API for distinguishing between public, hidden, and private arguments and option groups, and a new extended help screen accessible via `--help-hidden`. ([#366], [#390], and [#405 through #413][1.1.0]) - You can now override the autogenerated usage string when configuring a command. ([#400]) ### Changes - `ArgumentParser` now requires Swift 5.5. ### Fixes - The auto-generated usage string now correctly hides all optional parameters when over the length limit. ([#416]) - One `@Option` initializer now has its parameters in the correct order; the incorrect initializer is deprecated. ([#391]) - Help flags are now correctly captured in `.unconditionalRemaining` argument arrays. - Documentation fixes and improvements. The 1.1.0 release includes contributions from [keith], [MartinP7r], [McNight], [natecook1000], [rauhul], and [zkiraly]. Thank you! --- ## [1.0.3] - 2022-01-31 ### Changes - When a user provides an incorrect value for an option, an `ArgumentParser`-based program now includes the valid values when possible. ``` $ example --format png Error: The value 'png' is invalid for '--format '. Please provide one of 'text', 'json' or 'csv'. ``` ### Fixes - Resolves an issue with `zsh` custom completions for command names that include a dash. - Improves the generated completions scripts for `fish`. - Resolves issues that prevented building `ArgumentParser` for WebAssembly using SwiftWasm toolchains. - Improved window size handling on Windows. - Fixed a crash when using `--experimental-dump-help` with commands that provide non-parsed values. - Fixes an issue where subcommands that declare array arguments with the `.unconditionalRemaining` parsing strategy unexpectedly miss arguments, extending the change in [#333] to subcommands. ([#397]) - Corrects the order of an `@Option` initializer's parameters, deprecating the old version. ([#391]) - Expanded and corrected documentation. The 1.0.3 release includes contributions from [atierian], [CraigSiemens], [dduan], [floam], [KS1019], [McNight], [mdznr], [natecook1000], [rauhul], and [yonihemi]. Thank you! ## [1.0.2] - 2021-11-09 ### Fixes - Addresses an issue when building tests under Mac Catalyst. The 1.0.2 release includes a contribution from [jakepetroules]. Thank you! ## [1.0.1] - 2021-09-14 ### Fixes - Addresses an issue when compiling under Mac Catalyst. The 1.0.1 release includes a contribution from [imxieyi]. Thank you! ## [1.0.0] - 2021-09-10 The 1.0 release marks an important milestone — `ArgumentParser` is now source stable! ### Changes - `ArgumentParser` now provides a DocC documentation catalog, so you can view rendered articles and symbol documentation directly within Xcode. ### Fixes - Parsing works as expected for options with single-dash names that are declared using the `.upToNextOption` parsing strategy. --- ## [0.5.0] - 2021-09-02 ### Additions - When a user doesn't provide a required argument, the error message now includes that argument's help text. ([#324]) - Command-line tools built with `ArgumentParser` now include an experimental flag to dump command/argument/help information as JSON: `--experimental-dump-help`. ([#310]) ### Changes - All public enumerations are now structs with static properties, to make compatibility with future additions simpler. ### Fixes - Array properties defined as `@Option` with the `.upToNextOption` parsing strategy now include all provided values. ([#304]) In the example below, all four values are now included in the resulting array, where only the last two were included in previous releases: ```swift struct Example: ParsableCommand { @Option(parsing: .upToNextOption) var option: [String] } ``` ``` $ example --option one two --option three four ``` - When a command defines an array property as an `@Argument` with the `.unconditionalRemaining` parsing strategy, option and flag parsing now stops at the first positional argument or unrecognized flag. ([#333]) - Completion scripts correctly use customized help flags. ([#308]) - Fixes errors with bash custom completion arguments and the executable path. ([#320], [#323]) - Fixes the behavior when a user specifies both the `help` subcommand and a help flag. ([#309]) - A variety of internal improvements. ([#315], [#316], [#321], [#341]) The 0.5.0 release includes contributions from [atierian], [compnerd], [dirtyhabits97], [Frizlab], [KS1019], [natecook1000], and [rauhul]. Thank you! --- ## [0.4.4] - 2021-07-30 ### Fixes - Includes a workaround for a runtime crash with certain `OptionGroup` configurations when a command is compiled in release mode. ## [0.4.3] - 2021-04-28 ### Additions - Experimental API for hiding `@OptionGroup`-declared properties from the help screen. The 0.4.3 release includes a contribution from [miggs597]. Thank you! ## [0.4.2] - 2021-04-21 ### Fixes - Both parts of a flag with an inversion are now hidden when specified. - Better support for building on OpenBSD. - Optional unparsed values are now always properly decoded. ([#290]) - Help information from super-commands is no longer unnecessarily injected into subcommand help screens. The 0.4.2 release includes contributions from [3405691582], [kylemacomber], [miggs597], [natecook1000], and [werm098]. Thank you! ## [0.4.1] - 2021-03-08 ### Additions - When a user provides an invalid value as an argument or option, the error message now includes the help text for that argument. ### Fixes - Zsh completion scripts for commands that include a hyphen no longer cause errors. - Optional unparsed values are now decoded correctly in `ParsableArguments` types. The 0.4.1 release includes contributions from [adellibovi] and [natecook1000]. Thank you! ## [0.4.0] - 2021-03-04 ### Additions - Short options can now support "joined option" syntax, which lets users specify a value appended immediately after the option's short name. For example, in addition to calling this `example` command with `-D debug` and `-D=debug`, users can now write `-Ddebug` for the same parsed value. ([#240]) ```swift @main struct Example: ParsableCommand { @Option(name: .customShort("D", allowingJoined: true)) var debugValue: String func run() { print(debugValue) } } ``` ### Changes - The `CommandConfiguration.helpNames` property is now optional, to allow the overridden help flags of parent commands to flow down to their children. Most existing code should not be affected, but if you've customized a command's help flags, you may see different behavior. ([#251]) - The `errorCode` property is no longer used as a command's exit code when `CustomNSError` types are thrown. ([#276]) *Migration:* Instead of throwing a `CustomNSError` type, print your error manually and throw an `ExitCode` error to customize your command's exit code. ### Removals - Old, deprecated property wrapper initializers have been removed. ### Fixes - Validation errors now show the correct help flags when help flags have been customized. - Options, flags, and arguments that are marked as hidden from the help screen are also suppressed from completion scripts. - Non-parsed variable properties are now allowed in parsable types. - Error messages produced when `NSError` types are thrown have been improved. - The usage line for commands with a large number of options includes more detail about required flags and positional arguments. - Support for CMake builds on Apple Silicon is improved. The 0.4.0 release includes contributions from [CodaFi], [lorentey], [natecook1000], [schlagelk], and [Zoha131]. Thank you! --- ## [0.3.2] - 2021-01-15 ### Fixes - Changes made to a command's properties in its `validate` method are now persisted. - The exit code defined by error types that conform to `CustomNSError` are now honored. - Improved error message when declaring a command type with an unadorned mutable property. (See [#256] for more.) - Migrated from `CRT` to `MSVCRT` for Windows platforms. - Fixes and improvements for building with CMake for Windows and Apple Silicon. - Documentation improvements. The 0.3.2 release includes contributions from [compnerd], [CypherPoet], [damuellen], [drewmccormack], [elliottwilliams], [gmittert], [MaxDesiatov], [natecook1000], [pegasuze], and [SergeyPetrachkov]. Thank you! ## [0.3.1] - 2020-09-02 ### Fixes - An option or flag can now declare a name with both single- and double-dash prefixes, such as `-my-flag` and `--my-flag`. Specify both names in the `name` parameter when declaring your property: ```swift @Flag(name: [.long, .customLong("my-flag", withSingleDash: true)]) var myFlag = false ``` - Parsing performance improvements. ## [0.3.0] - 2020-08-15 ### Additions - Shell completion scripts are now available for Fish. ### Changes - 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: ```swift // 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 ### Fixes - 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 ### Additions - You can now generate Bash and Zsh shell completion scripts for commands, either by using the `--generate-completion-script` flag when running a command, or by calling the static `completionScript(for:)` method on a root `ParsableCommand` type. See the [guide to completion scripts][comp-guide] for information on customizing and installing the completion script for your command. ### Fixes - 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 `ExpressibleByArgument` conformance 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! [comp-guide]: https://github.com/apple/swift-argument-parser/blob/main/Documentation/07%20Completion%20Scripts.md ## [0.2.0] - 2020-06-23 ### Additions - 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. ### Changes - This release of `swift-argument-parser` requires 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 `false` for Boolean flags. *Migration:* Specify default values using typical Swift default value syntax to remove the deprecation warnings: ```swift // 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 of `false` to retain the old behavior. ### Fixes - 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 ### Additions - Error messages and help screens now include information about how to request more help. - CMake builds now support installation. ### Changes - The `static func main()` method on `ParsableCommand` no longer returns `Never`. This allows `ParsableCommand` types to be designated as the entry point for a Swift executable by using the `@main` attribute. *Migration:* For most uses, this change is source compatible. If you have used `main()` where a `() -> Never` function is explicitly required, you'll need to change your usage or capture the method in another function. - `Optional` no longer conforms to `ExpressibleByArgument`, 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 `ExpressibleByArgument` type is expected, such as a generic function, you will need to change your usage or provide an explicit override. - `ParsableCommand`'s `run()` method requirement is now a `mutating` method, 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 its `run()` method, you may need to change the command from a constant to a variable. ### Removals - The `@Flag` initializers that were deprecated in version 0.0.6 are now marked as unavailable. ### Fixes - `@Option` properties of an optional type that use a `transform` closure 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 `.unconditionalRemaining` argument 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 ### Additions - Command definition validation now checks for name collisions between options and flags. - `ValidationError.message` is now publicly accessible. - Added an `EnumerableFlag` protocol for `CaseIterable` types that are used to provide the names for flags. When declaring conformance to `EnumerableFlag`, 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. ### Deprecations - `@Flag` properties that use `CaseIterable`/`String` types as their values are deprecated, and the related `@Flag` initializers will be removed in a future version. *Migration:* Add `EnumerableFlag` conformance to the type of these kinds of `@Flag` properties. ### Fixes - Errors thrown while parsing in a `transform` closure are printed correctly instead of a general `Invalid state` error. - 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 ### Additions - You can now specify a version string in a `ParsableCommand`'s configuration. The generated tool will then automatically respond to a `--version` flag. - Command definitions are now validated at runtime in debug mode, to check issues that can't be detected during compilation. ### Fixes - 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 ### Fixes - Removed usage of 5.2-only syntax. ## [0.0.3] - 2020-03-22 ### Additions - You can specify the `.unconditionalRemaining` parsing strategy for arrays of positional arguments to accept dash-prefixed input, like `example --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 `ExpressibleByArgument` type. - You can call the static `exitCode(for:)` method on any command to retrieve the exit code for a given error. ### Fixes - Supporting targets are now prefixed to prevent conflicts with other libraries. - The extension providing `init?(argument:)` to `RawRepresentable` types is now properly constrained. - The parser no longer treats passing the same exclusive flag more than once as an error. - `ParsableArguments` types that are declared as `@OptionGroup` properties on commands can now also be declared on subcommands. Previously, the parent command's declaration would prevent subcommands from seeing the user-supplied arguments. - Default values are rendered correctly for properties with `Optional` types. - 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 ### Additions - The `EX_USAGE` exit code is now used for validation errors. - The parser provides near-miss suggestions when a user provides an unknown option. - `ArgumentParser` now builds on Windows. - You can throw an `ExitCode` error to exit without printing any output. - You can now create optional Boolean flags with inversions that default to `nil`: ```swift @Flag(inversion: .prefixedNo) var takeMyShot: Bool? ``` - You can now specify exclusivity for case-iterable flags and for Boolean flags with inversions. ### Fixes - 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 `@OptionGroup` in subcommands are no longer duplicated. - Case-iterable flags created with the `.chooseFirst` exclusivity 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 - `ArgumentParser` initial release. --- This changelog's format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). [Unreleased]: https://github.com/apple/swift-argument-parser/compare/1.7.1...HEAD [1.7.1]: https://github.com/apple/swift-argument-parser/compare/1.7.0...1.7.1 [1.7.0]: https://github.com/apple/swift-argument-parser/compare/1.6.2...1.7.0 [1.6.2]: https://github.com/apple/swift-argument-parser/compare/1.6.1...1.6.2 [1.6.1]: https://github.com/apple/swift-argument-parser/compare/1.6.0...1.6.1 [1.6.0]: https://github.com/apple/swift-argument-parser/compare/1.5.1...1.6.0 [1.5.1]: https://github.com/apple/swift-argument-parser/compare/1.5.0...1.5.1 [1.5.0]: https://github.com/apple/swift-argument-parser/compare/1.4.0...1.5.0 [1.4.0]: https://github.com/apple/swift-argument-parser/compare/1.3.1...1.4.0 [1.3.1]: https://github.com/apple/swift-argument-parser/compare/1.3.0...1.3.1 [1.3.0]: https://github.com/apple/swift-argument-parser/compare/1.2.3...1.3.0 [1.2.3]: https://github.com/apple/swift-argument-parser/compare/1.2.2...1.2.3 [1.2.2]: https://github.com/apple/swift-argument-parser/compare/1.2.1...1.2.2 [1.2.1]: https://github.com/apple/swift-argument-parser/compare/1.2.0...1.2.1 [1.2.0]: https://github.com/apple/swift-argument-parser/compare/1.1.4...1.2.0 [1.1.4]: https://github.com/apple/swift-argument-parser/compare/1.1.3...1.1.4 [1.1.3]: https://github.com/apple/swift-argument-parser/compare/1.1.2...1.1.3 [1.1.2]: https://github.com/apple/swift-argument-parser/compare/1.1.1...1.1.2 [1.1.1]: https://github.com/apple/swift-argument-parser/compare/1.1.0...1.1.1 [1.1.0]: https://github.com/apple/swift-argument-parser/compare/1.0.3...1.1.0 [1.0.3]: https://github.com/apple/swift-argument-parser/compare/1.0.2...1.0.3 [1.0.2]: https://github.com/apple/swift-argument-parser/compare/1.0.1...1.0.2 [1.0.1]: https://github.com/apple/swift-argument-parser/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/apple/swift-argument-parser/compare/0.5.0...1.0.0 [0.5.0]: https://github.com/apple/swift-argument-parser/compare/0.4.4...0.5.0 [0.4.4]: https://github.com/apple/swift-argument-parser/compare/0.4.3...0.4.4 [0.4.3]: https://github.com/apple/swift-argument-parser/compare/0.4.2...0.4.3 [0.4.2]: https://github.com/apple/swift-argument-parser/compare/0.4.1...0.4.2 [0.4.1]: https://github.com/apple/swift-argument-parser/compare/0.4.0...0.4.1 [0.4.0]: https://github.com/apple/swift-argument-parser/compare/0.3.2...0.4.0 [0.3.2]: https://github.com/apple/swift-argument-parser/compare/0.3.1...0.3.2 [0.3.1]: https://github.com/apple/swift-argument-parser/compare/0.3.0...0.3.1 [0.3.0]: https://github.com/apple/swift-argument-parser/compare/0.2.2...0.3.0 [0.2.2]: https://github.com/apple/swift-argument-parser/compare/0.2.1...0.2.2 [0.2.1]: https://github.com/apple/swift-argument-parser/compare/0.2.0...0.2.1 [0.2.0]: https://github.com/apple/swift-argument-parser/compare/0.1.0...0.2.0 [0.1.0]: https://github.com/apple/swift-argument-parser/compare/0.0.6...0.1.0 [0.0.6]: https://github.com/apple/swift-argument-parser/compare/0.0.5...0.0.6 [0.0.5]: https://github.com/apple/swift-argument-parser/compare/0.0.4...0.0.5 [0.0.4]: https://github.com/apple/swift-argument-parser/compare/0.0.3...0.0.4 [0.0.3]: https://github.com/apple/swift-argument-parser/compare/0.0.2...0.0.3 [0.0.2]: https://github.com/apple/swift-argument-parser/compare/0.0.1...0.0.2 [0.0.1]: https://github.com/apple/swift-argument-parser/releases/tag/0.0.1 [#65]: https://github.com/apple/swift-argument-parser/pull/65 [#240]: https://github.com/apple/swift-argument-parser/pull/240 [#251]: https://github.com/apple/swift-argument-parser/pull/251 [#256]: https://github.com/apple/swift-argument-parser/pull/256 [#276]: https://github.com/apple/swift-argument-parser/pull/276 [#290]: https://github.com/apple/swift-argument-parser/pull/290 [#299]: https://github.com/apple/swift-argument-parser/pull/299 [#304]: https://github.com/apple/swift-argument-parser/pull/304 [#308]: https://github.com/apple/swift-argument-parser/pull/308 [#309]: https://github.com/apple/swift-argument-parser/pull/309 [#310]: https://github.com/apple/swift-argument-parser/pull/310 [#315]: https://github.com/apple/swift-argument-parser/pull/315 [#316]: https://github.com/apple/swift-argument-parser/pull/316 [#320]: https://github.com/apple/swift-argument-parser/pull/320 [#321]: https://github.com/apple/swift-argument-parser/pull/321 [#323]: https://github.com/apple/swift-argument-parser/pull/323 [#324]: https://github.com/apple/swift-argument-parser/pull/324 [#332]: https://github.com/apple/swift-argument-parser/pull/332 [#333]: https://github.com/apple/swift-argument-parser/pull/333 [#341]: https://github.com/apple/swift-argument-parser/pull/341 [#366]: https://github.com/apple/swift-argument-parser/pull/366 [#390]: https://github.com/apple/swift-argument-parser/pull/390 [#391]: https://github.com/apple/swift-argument-parser/pull/391 [#397]: https://github.com/apple/swift-argument-parser/pull/397 [#400]: https://github.com/apple/swift-argument-parser/pull/400 [#404]: https://github.com/apple/swift-argument-parser/pull/404 [#416]: https://github.com/apple/swift-argument-parser/pull/416 [#424]: https://github.com/apple/swift-argument-parser/pull/424 [#427]: https://github.com/apple/swift-argument-parser/pull/427 [#435]: https://github.com/apple/swift-argument-parser/pull/435 [#436]: https://github.com/apple/swift-argument-parser/pull/436 [#443]: https://github.com/apple/swift-argument-parser/pull/443 [#445]: https://github.com/apple/swift-argument-parser/pull/445 [#456]: https://github.com/apple/swift-argument-parser/pull/456 [#471]: https://github.com/apple/swift-argument-parser/pull/471 [#472]: https://github.com/apple/swift-argument-parser/pull/472 [#473]: https://github.com/apple/swift-argument-parser/pull/473 [#474]: https://github.com/apple/swift-argument-parser/pull/474 [#475]: https://github.com/apple/swift-argument-parser/pull/475 [#476]: https://github.com/apple/swift-argument-parser/pull/476 [#477]: https://github.com/apple/swift-argument-parser/pull/477 [#480]: https://github.com/apple/swift-argument-parser/pull/480 [#486]: https://github.com/apple/swift-argument-parser/pull/486 [#487]: https://github.com/apple/swift-argument-parser/pull/487 [#492]: https://github.com/apple/swift-argument-parser/pull/492 [#494]: https://github.com/apple/swift-argument-parser/pull/494 [#495]: https://github.com/apple/swift-argument-parser/pull/495 [#496]: https://github.com/apple/swift-argument-parser/pull/496 [#505]: https://github.com/apple/swift-argument-parser/pull/505 [#520]: https://github.com/apple/swift-argument-parser/pull/520 [#522]: https://github.com/apple/swift-argument-parser/pull/522 [#535]: https://github.com/apple/swift-argument-parser/pull/535 [#542]: https://github.com/apple/swift-argument-parser/pull/542 [#547]: https://github.com/apple/swift-argument-parser/pull/547 [#548]: https://github.com/apple/swift-argument-parser/pull/548 [#550]: https://github.com/apple/swift-argument-parser/pull/550 [#552]: https://github.com/apple/swift-argument-parser/pull/552 [#554]: https://github.com/apple/swift-argument-parser/pull/554 [#565]: https://github.com/apple/swift-argument-parser/pull/565 [#568]: https://github.com/apple/swift-argument-parser/pull/568 [#572]: https://github.com/apple/swift-argument-parser/pull/572 [#573]: https://github.com/apple/swift-argument-parser/pull/573 [#574]: https://github.com/apple/swift-argument-parser/pull/574 [#579]: https://github.com/apple/swift-argument-parser/pull/579 [#582]: https://github.com/apple/swift-argument-parser/pull/582 [#590]: https://github.com/apple/swift-argument-parser/pull/590 [#592]: https://github.com/apple/swift-argument-parser/pull/592 [#594]: https://github.com/apple/swift-argument-parser/pull/594 [#596]: https://github.com/apple/swift-argument-parser/pull/596 [#602]: https://github.com/apple/swift-argument-parser/pull/602 [#606]: https://github.com/apple/swift-argument-parser/pull/606 [#607]: https://github.com/apple/swift-argument-parser/pull/607 [#608]: https://github.com/apple/swift-argument-parser/pull/608 [#610]: https://github.com/apple/swift-argument-parser/pull/610 [#611]: https://github.com/apple/swift-argument-parser/pull/611 [#612]: https://github.com/apple/swift-argument-parser/pull/612 [#614]: https://github.com/apple/swift-argument-parser/pull/614 [#615]: https://github.com/apple/swift-argument-parser/pull/615 [#616]: https://github.com/apple/swift-argument-parser/pull/616 [#617]: https://github.com/apple/swift-argument-parser/pull/617 [#619]: https://github.com/apple/swift-argument-parser/pull/619 [#621]: https://github.com/apple/swift-argument-parser/pull/621 [#627]: https://github.com/apple/swift-argument-parser/pull/627 [#628]: https://github.com/apple/swift-argument-parser/pull/628 [#634]: https://github.com/apple/swift-argument-parser/pull/634 [#636]: https://github.com/apple/swift-argument-parser/pull/636 [#644]: https://github.com/apple/swift-argument-parser/pull/644 [#647]: https://github.com/apple/swift-argument-parser/pull/647 [#648]: https://github.com/apple/swift-argument-parser/pull/648 [#649]: https://github.com/apple/swift-argument-parser/pull/649 [#650]: https://github.com/apple/swift-argument-parser/pull/650 [#651]: https://github.com/apple/swift-argument-parser/pull/651 [#657]: https://github.com/apple/swift-argument-parser/pull/657 [#663]: https://github.com/apple/swift-argument-parser/pull/663 [#666]: https://github.com/apple/swift-argument-parser/pull/666 [#667]: https://github.com/apple/swift-argument-parser/pull/667 [#669]: https://github.com/apple/swift-argument-parser/pull/669 [#676]: https://github.com/apple/swift-argument-parser/pull/676 [#678]: https://github.com/apple/swift-argument-parser/pull/678 [#680]: https://github.com/apple/swift-argument-parser/pull/680 [#684]: https://github.com/apple/swift-argument-parser/pull/684 [#685]: https://github.com/apple/swift-argument-parser/pull/685 [#690]: https://github.com/apple/swift-argument-parser/pull/690 [#692]: https://github.com/apple/swift-argument-parser/pull/692 [#693]: https://github.com/apple/swift-argument-parser/pull/693 [#694]: https://github.com/apple/swift-argument-parser/pull/694 [#696]: https://github.com/apple/swift-argument-parser/pull/696 [#697]: https://github.com/apple/swift-argument-parser/pull/697 [#698]: https://github.com/apple/swift-argument-parser/pull/698 [#699]: https://github.com/apple/swift-argument-parser/pull/699 [#700]: https://github.com/apple/swift-argument-parser/pull/700 [#701]: https://github.com/apple/swift-argument-parser/pull/701 [#705]: https://github.com/apple/swift-argument-parser/pull/705 [#707]: https://github.com/apple/swift-argument-parser/pull/707 [#708]: https://github.com/apple/swift-argument-parser/pull/708 [#711]: https://github.com/apple/swift-argument-parser/pull/711 [#712]: https://github.com/apple/swift-argument-parser/pull/712 [#714]: https://github.com/apple/swift-argument-parser/pull/714 [#716]: https://github.com/apple/swift-argument-parser/pull/716 [#718]: https://github.com/apple/swift-argument-parser/pull/718 [#720]: https://github.com/apple/swift-argument-parser/pull/720 [#724]: https://github.com/apple/swift-argument-parser/pull/724 [#727]: https://github.com/apple/swift-argument-parser/pull/727 [#728]: https://github.com/apple/swift-argument-parser/pull/728 [#729]: https://github.com/apple/swift-argument-parser/pull/729 [#730]: https://github.com/apple/swift-argument-parser/pull/730 [#731]: https://github.com/apple/swift-argument-parser/pull/731 [#732]: https://github.com/apple/swift-argument-parser/pull/732 [#735]: https://github.com/apple/swift-argument-parser/pull/735 [#736]: https://github.com/apple/swift-argument-parser/pull/736 [#738]: https://github.com/apple/swift-argument-parser/pull/738 [#740]: https://github.com/apple/swift-argument-parser/pull/740 [#741]: https://github.com/apple/swift-argument-parser/pull/741 [#743]: https://github.com/apple/swift-argument-parser/pull/743 [#744]: https://github.com/apple/swift-argument-parser/pull/744 [#746]: https://github.com/apple/swift-argument-parser/pull/746 [#747]: https://github.com/apple/swift-argument-parser/pull/747 [#754]: https://github.com/apple/swift-argument-parser/pull/754 [#760]: https://github.com/apple/swift-argument-parser/pull/760 [#762]: https://github.com/apple/swift-argument-parser/pull/762 [#763]: https://github.com/apple/swift-argument-parser/pull/763 [#766]: https://github.com/apple/swift-argument-parser/pull/766 [#767]: https://github.com/apple/swift-argument-parser/pull/767 [#770]: https://github.com/apple/swift-argument-parser/pull/770 [#773]: https://github.com/apple/swift-argument-parser/pull/773 [#775]: https://github.com/apple/swift-argument-parser/pull/775 [#777]: https://github.com/apple/swift-argument-parser/pull/777 [#782]: https://github.com/apple/swift-argument-parser/pull/782 [#783]: https://github.com/apple/swift-argument-parser/pull/783 [#787]: https://github.com/apple/swift-argument-parser/pull/787 [#789]: https://github.com/apple/swift-argument-parser/pull/789 [#791]: https://github.com/apple/swift-argument-parser/pull/791 [#792]: https://github.com/apple/swift-argument-parser/pull/792 [#794]: https://github.com/apple/swift-argument-parser/pull/794 [#801]: https://github.com/apple/swift-argument-parser/pull/801 [#802]: https://github.com/apple/swift-argument-parser/pull/802 [#804]: https://github.com/apple/swift-argument-parser/pull/804 [#808]: https://github.com/apple/swift-argument-parser/pull/808 [#811]: https://github.com/apple/swift-argument-parser/pull/811 [#813]: https://github.com/apple/swift-argument-parser/pull/813 [#821]: https://github.com/apple/swift-argument-parser/pull/821 [#825]: https://github.com/apple/swift-argument-parser/pull/825 [#838]: https://github.com/apple/swift-argument-parser/pull/838 [#839]: https://github.com/apple/swift-argument-parser/pull/839 [#841]: https://github.com/apple/swift-argument-parser/pull/841 [#843]: https://github.com/apple/swift-argument-parser/pull/843 [#844]: https://github.com/apple/swift-argument-parser/pull/844 [#853]: https://github.com/apple/swift-argument-parser/pull/853 [#856]: https://github.com/apple/swift-argument-parser/pull/856 [#857]: https://github.com/apple/swift-argument-parser/pull/857 [#859]: https://github.com/apple/swift-argument-parser/pull/859 [#864]: https://github.com/apple/swift-argument-parser/pull/864 [#866]: https://github.com/apple/swift-argument-parser/pull/866 [#873]: https://github.com/apple/swift-argument-parser/pull/873 [#874]: https://github.com/apple/swift-argument-parser/pull/874 [#875]: https://github.com/apple/swift-argument-parser/pull/875 [#876]: https://github.com/apple/swift-argument-parser/pull/876 [#877]: https://github.com/apple/swift-argument-parser/pull/877 [#879]: https://github.com/apple/swift-argument-parser/pull/879 [3405691582]: https://github.com/apple/swift-argument-parser/commits?author=3405691582 [adellibovi]: https://github.com/apple/swift-argument-parser/commits?author=adellibovi [aleksey-mashanov]: https://github.com/apple/swift-argument-parser/commits?author=aleksey-mashanov [AliSoftware]: https://github.com/apple/swift-argument-parser/commits?author=AliSoftware [Alkenso]: https://github.com/apple/swift-argument-parser/commits?author=Alkenso [allevato]: https://github.com/apple/swift-argument-parser/commits?author=allevato [artemnovichkov]: https://github.com/apple/swift-argument-parser/commits?author=artemnovichkov [atierian]: https://github.com/apple/swift-argument-parser/commits?author=atierian [Austinpayne]: https://github.com/apple/swift-argument-parser/commits?author=Austinpayne [bkhouri]: https://github.com/apple/swift-argument-parser/commits?author=bkhouri [bob-wilson]: https://github.com/apple/swift-argument-parser/commits?author=bob-wilson [BradLarson]: https://github.com/apple/swift-argument-parser/commits?author=BradLarson [bripeticca]: https://github.com/apple/swift-argument-parser/commits?author=bripeticca [buttaface]: https://github.com/apple/swift-argument-parser/commits?author=buttaface [cg-soft]: https://github.com/apple/swift-argument-parser/commits?author=cg-soft [Chamepp]: https://github.com/apple/swift-argument-parser/commits?author=Chamepp [clayellis]: https://github.com/apple/swift-argument-parser/commits?author=clayellis [cmcgee1024]: https://github.com/apple/swift-argument-parser/commits?author=cmcgee1024 [CodaFi]: https://github.com/apple/swift-argument-parser/commits?author=CodaFi [Coeur]: https://github.com/apple/swift-argument-parser/commits?author=Coeur [compnerd]: https://github.com/apple/swift-argument-parser/commits?author=compnerd [CraigSiemens]: https://github.com/apple/swift-argument-parser/commits?author=CraigSiemens [CypherPoet]: https://github.com/apple/swift-argument-parser/commits?author=CypherPoet [d-ronnqvist]: https://github.com/apple/swift-argument-parser/commits?author=d-ronnqvist [dabrahams]: https://github.com/apple/swift-argument-parser/commits?author=dabrahams [damuellen]: https://github.com/apple/swift-argument-parser/commits?author=damuellen [dcantah]: https://github.com/apple/swift-argument-parser/commits?author=dcantah [dduan]: https://github.com/apple/swift-argument-parser/commits?author=dduan [dirtyhabits97]: https://github.com/apple/swift-argument-parser/commits?author=dirtyhabits97 [DougGregor]: https://github.com/apple/swift-argument-parser/commits?author=DougGregor [drewmccormack]: https://github.com/apple/swift-argument-parser/commits?author=drewmccormack [dshan4585]: https://github.com/apple/swift-argument-parser/commits?author=dshan4585 [elliottwilliams]: https://github.com/apple/swift-argument-parser/commits?author=elliottwilliams [erica]: https://github.com/apple/swift-argument-parser/commits?author=erica [finagolfin]: https://github.com/apple/swift-argument-parser/commits?author=finagolfin [floam]: https://github.com/apple/swift-argument-parser/commits?author=floam [Frizlab]: https://github.com/apple/swift-argument-parser/commits?author=Frizlab [futurejones]: https://github.com/apple/swift-argument-parser/commits?author=futurejones [glessard]: https://github.com/apple/swift-argument-parser/commits?author=glessard [gmittert]: https://github.com/apple/swift-argument-parser/commits?author=gmittert [griffin-stewie]: https://github.com/apple/swift-argument-parser/commits?author=griffin-stewie [gwynne]: https://github.com/apple/swift-argument-parser/commits?author=gwynne [heckj]: https://github.com/apple/swift-argument-parser/commits?author=heckj [iainsmith]: https://github.com/apple/swift-argument-parser/commits?author=iainsmith [ian-twilightcoder]: https://github.com/apple/swift-argument-parser/commits?author=ian-twilightcoder [ibrahimoktay]: https://github.com/apple/swift-argument-parser/commits?author=ibrahimoktay [imxieyi]: https://github.com/apple/swift-argument-parser/commits?author=imxieyi [incertum]: https://github.com/apple/swift-argument-parser/commits?author=incertum [IngmarStein]: https://github.com/apple/swift-argument-parser/commits?author=IngmarStein [interstateone]: https://github.com/apple/swift-argument-parser/commits?author=interstateone [jakepetroules]: https://github.com/apple/swift-argument-parser/commits?author=jakepetroules [jglogan]: https://github.com/apple/swift-argument-parser/commits?author=jglogan [john-mueller]: https://github.com/apple/swift-argument-parser/commits?author=john-mueller [jonathanpenn]: https://github.com/apple/swift-argument-parser/commits?author=jonathanpenn [keith]: https://github.com/apple/swift-argument-parser/commits?author=keith [KeithBird]: https://github.com/apple/swift-argument-parser/commits?author=KeithBird [kennyyork]: https://github.com/apple/swift-argument-parser/commits?author=kennyyork [kkebo]: https://github.com/apple/swift-argument-parser/commits?author=kkebo [kkk669]: https://github.com/apple/swift-argument-parser/commits?author=kkk669 [klaaspieter]: https://github.com/apple/swift-argument-parser/commits?author=klaaspieter [konomae]: https://github.com/apple/swift-argument-parser/commits?author=konomae [Konstantin-Krokhin]: https://github.com/apple/swift-argument-parser/commits?author=Konstantin-Krokhin [kphrx]: https://github.com/apple/swift-argument-parser/commits?author=kphrx [KS1019]: https://github.com/apple/swift-argument-parser/commits?author=KS1019 [kylemacomber]: https://github.com/apple/swift-argument-parser/commits?author=kylemacomber [Lantua]: https://github.com/apple/swift-argument-parser/commits?author=Lantua [lorentey]: https://github.com/apple/swift-argument-parser/commits?author=lorentey [louisunlimited]: https://github.com/apple/swift-argument-parser/commits?author=louisunlimited [LucianoPAlmeida]: https://github.com/apple/swift-argument-parser/commits?author=LucianoPAlmeida [MarcoEidinger]: https://github.com/apple/swift-argument-parser/commits?author=MarcoEidinger [MartinP7r]: https://github.com/apple/swift-argument-parser/commits?author=MartinP7r [MaxDesiatov]: https://github.com/apple/swift-argument-parser/commits?author=MaxDesiatov [mayoff]: https://github.com/apple/swift-argument-parser/commits?author=mayoff [McNight]: https://github.com/apple/swift-argument-parser/commits?author=McNight [mdznr]: https://github.com/apple/swift-argument-parser/commits?author=mdznr [miggs597]: https://github.com/apple/swift-argument-parser/commits?author=miggs597 [miguelangel-dev]: https://github.com/apple/swift-argument-parser/commits?author=miguelangel-dev [MPLew-is]: https://github.com/apple/swift-argument-parser/commits?author=MPLew-is [mtj0928]: https://github.com/apple/swift-argument-parser/commits?author=mtj0928 [natecook1000]: https://github.com/apple/swift-argument-parser/commits?author=natecook1000 [NicFontana]: https://github.com/apple/swift-argument-parser/commits?author=NicFontana [owenv]: https://github.com/apple/swift-argument-parser/commits?author=owenv [pegasuze]: https://github.com/apple/swift-argument-parser/commits?author=pegasuze [randomeizer]: https://github.com/apple/swift-argument-parser/commits?author=randomeizer [rauhul]: https://github.com/apple/swift-argument-parser/commits?author=rauhul [revolter]: https://github.com/apple/swift-argument-parser/commits?author=revolter [rgoldberg]: https://github.com/apple/swift-argument-parser/commits?author=rgoldberg [rickrizzo]: https://github.com/apple/swift-argument-parser/commits?author=rickrizzo [rjstelling]: https://github.com/apple/swift-argument-parser/commits?author=rjstelling [robertmryan]: https://github.com/apple/swift-argument-parser/commits?author=robertmryan [Sajjon]: https://github.com/apple/swift-argument-parser/commits?author=Sajjon [salmanmkc]: https://github.com/apple/swift-argument-parser/commits?author=salmanmkc [schlagelk]: https://github.com/apple/swift-argument-parser/commits?author=schlagelk [SergeyPetrachkov]: https://github.com/apple/swift-argument-parser/commits?author=SergeyPetrachkov [sgl0v]: https://github.com/apple/swift-argument-parser/commits?author=sgl0v [sharplet]: https://github.com/apple/swift-argument-parser/commits?author=sharplet [sjavora]: https://github.com/apple/swift-argument-parser/commits?author=sjavora [stackotter]: https://github.com/apple/swift-argument-parser/commits?author=stackotter [Steelskin]: https://github.com/apple/swift-argument-parser/commits?author=Steelskin [stuartcarnie]: https://github.com/apple/swift-argument-parser/commits?author=stuartcarnie [thomasvl]: https://github.com/apple/swift-argument-parser/commits?author=thomasvl [TiagoMaiaL]: https://github.com/apple/swift-argument-parser/commits?author=TiagoMaiaL [toddthomas]: https://github.com/apple/swift-argument-parser/commits?author=toddthomas [tshortli]: https://github.com/apple/swift-argument-parser/commits?author=tshortli [vlm]: https://github.com/apple/swift-argument-parser/commits?author=vlm [werm098]: https://github.com/apple/swift-argument-parser/commits?author=werm098 [Wevah]: https://github.com/apple/swift-argument-parser/commits?author=Wevah [Wildchild9]: https://github.com/apple/swift-argument-parser/commits?author=Wildchild9 [William-Laverty]: https://github.com/apple/swift-argument-parser/commits?author=William-Laverty [yim-lee]: https://github.com/apple/swift-argument-parser/commits?author=yim-lee [yonihemi]: https://github.com/apple/swift-argument-parser/commits?author=yonihemi [YuAo]: https://github.com/apple/swift-argument-parser/commits?author=YuAo [zkiraly]: https://github.com/apple/swift-argument-parser/commits?author=zkiraly [zntfdr]: https://github.com/apple/swift-argument-parser/commits?author=zntfdr [Zoha131]: https://github.com/apple/swift-argument-parser/commits?author=Zoha131