mirror of
https://github.com/clap-rs/clap
synced 2024-12-16 07:42:32 +00:00
v0.2.6
This commit is contained in:
parent
91f4f41ee7
commit
0a5edfd5ad
3 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
# v0.2.6 (2018-XX-XX)
|
# v0.2.6 (2018-03-31)
|
||||||
|
|
||||||
* Fail compilation when using `default_value` or `required` with `bool` ([#80](https://github.com/TeXitoi/structopt/issues/80)) by [@TeXitoi](https://github.com/TeXitoi)
|
* Fail compilation when using `default_value` or `required` with `bool` ([#80](https://github.com/TeXitoi/structopt/issues/80)) by [@TeXitoi](https://github.com/TeXitoi)
|
||||||
* Fix compilation with `#[deny(warnings)]` with the `!` type (https://github.com/rust-lang/rust/pull/49039#issuecomment-376398999) by [@TeXitoi](https://github.com/TeXitoi)
|
* Fix compilation with `#[deny(warnings)]` with the `!` type (https://github.com/rust-lang/rust/pull/49039#issuecomment-376398999) by [@TeXitoi](https://github.com/TeXitoi)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "structopt"
|
name = "structopt"
|
||||||
version = "0.2.5"
|
version = "0.2.6"
|
||||||
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
|
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
|
||||||
description = "Parse command line argument by defining a struct."
|
description = "Parse command line argument by defining a struct."
|
||||||
documentation = "https://docs.rs/structopt"
|
documentation = "https://docs.rs/structopt"
|
||||||
|
@ -19,6 +19,6 @@ travis-ci = { repository = "TeXitoi/structopt" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "2.20", default-features = false }
|
clap = { version = "2.20", default-features = false }
|
||||||
structopt-derive = { path = "structopt-derive", version = "0.2.5" }
|
structopt-derive = { path = "structopt-derive", version = "0.2.6" }
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "structopt-derive"
|
name = "structopt-derive"
|
||||||
version = "0.2.5"
|
version = "0.2.6"
|
||||||
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
|
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
|
||||||
description = "Parse command line argument by defining a struct, derive crate."
|
description = "Parse command line argument by defining a struct, derive crate."
|
||||||
documentation = "https://docs.rs/structopt-derive"
|
documentation = "https://docs.rs/structopt-derive"
|
||||||
|
|
Loading…
Reference in a new issue