55
66[ ![ Crates.io] ( https://img.shields.io/crates/v/clap?style=flat-square )] ( https://crates.io/crates/clap )
77[ ![ Crates.io] ( https://img.shields.io/crates/d/clap?style=flat-square )] ( https://crates.io/crates/clap )
8- [ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square )] ( https://github.com/clap-rs/clap/blob/v3.0.10 /LICENSE-APACHE )
9- [ ![ License] ( https://img.shields.io/badge/license-MIT-blue?style=flat-square )] ( https://github.com/clap-rs/clap/blob/v3.0.10 /LICENSE-MIT )
8+ [ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square )] ( https://github.com/clap-rs/clap/blob/v3.0.11 /LICENSE-APACHE )
9+ [ ![ License] ( https://img.shields.io/badge/license-MIT-blue?style=flat-square )] ( https://github.com/clap-rs/clap/blob/v3.0.11 /LICENSE-MIT )
1010[ ![ Build Status] ( https://img.shields.io/github/workflow/status/clap-rs/clap/CI/staging?style=flat-square )] ( https://github.com/clap-rs/clap/actions/workflows/ci.yml?query=branch%3Astaging )
1111[ ![ Coverage Status] ( https://img.shields.io/coveralls/github/clap-rs/clap/master?style=flat-square )] ( https://coveralls.io/github/clap-rs/clap?branch=master )
1212[ ![ Contributors] ( https://img.shields.io/github/contributors/clap-rs/clap?style=flat-square )] ( https://github.com/clap-rs/clap/graphs/contributors )
1313
1414Dual-licensed under [ Apache 2.0] ( LICENSE-APACHE ) or [ MIT] ( LICENSE-MIT ) .
1515
16161 . [ About] ( #about )
17- 2 . Tutorial: [ Builder API] ( https://github.com/clap-rs/clap/blob/v3.0.10 /examples/tutorial_builder/README.md ) , [ Derive API] ( https://github.com/clap-rs/clap/blob/v3.0.10 /examples/tutorial_derive/README.md )
18- 3 . [ Examples] ( https://github.com/clap-rs/clap/blob/v3.0.10 /examples/README.md )
17+ 2 . Tutorial: [ Builder API] ( https://github.com/clap-rs/clap/blob/v3.0.11 /examples/tutorial_builder/README.md ) , [ Derive API] ( https://github.com/clap-rs/clap/blob/v3.0.11 /examples/tutorial_derive/README.md )
18+ 3 . [ Examples] ( https://github.com/clap-rs/clap/blob/v3.0.11 /examples/README.md )
19194 . [ API Reference] ( https://docs.rs/clap )
20- - [ Derive Reference] ( https://github.com/clap-rs/clap/blob/v3.0.10 /examples/derive_ref/README.md )
20+ - [ Derive Reference] ( https://github.com/clap-rs/clap/blob/v3.0.11 /examples/derive_ref/README.md )
2121 - [ Feature Flags] ( #feature-flags )
22- 5 . [ CHANGELOG] ( https://github.com/clap-rs/clap/blob/v3.0.10 /CHANGELOG.md )
23- 6 . [ FAQ] ( https://github.com/clap-rs/clap/blob/v3.0.10 /docs/FAQ.md )
22+ 5 . [ CHANGELOG] ( https://github.com/clap-rs/clap/blob/v3.0.11 /CHANGELOG.md )
23+ 6 . [ FAQ] ( https://github.com/clap-rs/clap/blob/v3.0.11 /docs/FAQ.md )
24247 . [ Questions & Discussions] ( https://github.com/clap-rs/clap/discussions )
25- 8 . [ Contributing] ( https://github.com/clap-rs/clap/blob/v3.0.10 /CONTRIBUTING.md )
25+ 8 . [ Contributing] ( https://github.com/clap-rs/clap/blob/v3.0.11 /CONTRIBUTING.md )
26268 . [ Sponsors] ( #sponsors )
2727
2828## About
@@ -32,7 +32,7 @@ Create your command-line parser, with all of the bells and whistles, declarative
3232### Example
3333
3434This uses our
35- [ Derive API] ( https://github.com/clap-rs/clap/blob/v3.0.10 /examples/derive_ref/README.md )
35+ [ Derive API] ( https://github.com/clap-rs/clap/blob/v3.0.11 /examples/derive_ref/README.md )
3636which provides access to the [ Builder API] ( https://docs.rs/clap ) as attributes on a ` struct ` :
3737
3838<!-- Copied from examples/demo.{rs,md} -->
@@ -63,7 +63,7 @@ fn main() {
6363Add this to ` Cargo.toml ` :
6464``` toml
6565[dependencies ]
66- clap = { version = " 3.0.10 " , features = [" derive" ] }
66+ clap = { version = " 3.0.11 " , features = [" derive" ] }
6767```
6868``` bash
6969$ demo --help
@@ -104,12 +104,12 @@ CLI parsers optimized for other use cases.
104104
105105### Selecting an API
106106
107- Why use the declarative [ Derive API] ( https://github.com/clap-rs/clap/blob/v3.0.10 /examples/tutorial_derive/README.md ) :
107+ Why use the declarative [ Derive API] ( https://github.com/clap-rs/clap/blob/v3.0.11 /examples/tutorial_derive/README.md ) :
108108- Easier to read, write, and modify
109109- Easier to keep the argument declaration and reading of argument in sync
110110- Easier to reuse, e.g. [ clap-verbosity-flag] ( https://crates.io/crates/clap-verbosity-flag )
111111
112- Why use the procedural [ Builder API] ( https://github.com/clap-rs/clap/blob/v3.0.10 /examples/tutorial_builder/README.md ) :
112+ Why use the procedural [ Builder API] ( https://github.com/clap-rs/clap/blob/v3.0.11 /examples/tutorial_builder/README.md ) :
113113- Faster compile times if you aren't already using other procedural macros
114114- More flexible, e.g. you can look up how many times an argument showed up,
115115 what its values were, and what were the indexes of those values. The Derive
0 commit comments