mirror of
https://github.com/clap-rs/clap
synced 2024-12-16 07:42:32 +00:00
v0.2.5
This commit is contained in:
parent
f9a7651619
commit
d529fe6435
3 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Unreleased
|
# v0.2.5 (2018-03-07)
|
||||||
|
|
||||||
* Work around breakage when `proc-macro2`'s nightly feature is enabled. ([#77](https://github.com/Texitoi/structopt/pull/77) and [proc-macro2#67](https://github.com/alexcrichton/proc-macro2/issues/67))
|
* Work around breakage when `proc-macro2`'s nightly feature is enabled. ([#77](https://github.com/Texitoi/structopt/pull/77) and [proc-macro2#67](https://github.com/alexcrichton/proc-macro2/issues/67)) by [@fitzgen](https://github.com/fitzgen)
|
||||||
|
|
||||||
# v0.2.4 (2018-02-25)
|
# v0.2.4 (2018-02-25)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "structopt"
|
name = "structopt"
|
||||||
version = "0.2.4"
|
version = "0.2.5"
|
||||||
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.4" }
|
structopt-derive = { path = "structopt-derive", version = "0.2.5" }
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "structopt-derive"
|
name = "structopt-derive"
|
||||||
version = "0.2.4"
|
version = "0.2.5"
|
||||||
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