From 6a7d1802c172f9973bb86f684ab7447247db066f Mon Sep 17 00:00:00 2001 From: CreepySkeleton Date: Tue, 25 Aug 2020 20:27:54 +0300 Subject: [PATCH] v0.3.17 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- structopt-derive/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f063041d..1da29809 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v0.3.17 (2020-08-25) + +* Fixed [a breakage](https://github.com/TeXitoi/structopt/issues/424) with resent rustc versions + due to `quote_spanned` misuse. + # v0.3.16 (2020-08-05) * Added [the new example](https://github.com/TeXitoi/structopt/blob/master/examples/required_if.rs). diff --git a/Cargo.toml b/Cargo.toml index c4c05dc8..b6c5c9e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt" -version = "0.3.16" +version = "0.3.17" edition = "2018" authors = ["Guillaume Pinot ", "others"] description = "Parse command line argument by defining a struct." @@ -28,7 +28,7 @@ travis-ci = { repository = "TeXitoi/structopt" } [dependencies] clap = { version = "2.33", default-features = false } -structopt-derive = { path = "structopt-derive", version = "=0.4.9" } +structopt-derive = { path = "structopt-derive", version = "=0.4.10" } lazy_static = "1.4.0" paw_dep = { version = "1", optional = true, package = "paw" } diff --git a/structopt-derive/Cargo.toml b/structopt-derive/Cargo.toml index 7dc5a9f6..f2fa8955 100644 --- a/structopt-derive/Cargo.toml +++ b/structopt-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt-derive" -version = "0.4.9" +version = "0.4.10" edition = "2018" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct, derive crate."