From 94b302192973f66622567c91010d6d4737a5214e Mon Sep 17 00:00:00 2001 From: CreepySkeleton Date: Sun, 1 Mar 2020 11:53:43 +0300 Subject: [PATCH] v0.3.10 --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- structopt-derive/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e578e47..fa2b41b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v0.3.10 (2020-03-01) + +* Fixed the breakage due to a required `syn` feature was not enabled. + # v0.3.9 (2020-02-01) * `clippy` warnings triggered by generated code shall not annoy you anymore! diff --git a/Cargo.toml b/Cargo.toml index 3df7af0d..75bd5bd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt" -version = "0.3.9" +version = "0.3.10" 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.2" } +structopt-derive = { path = "structopt-derive", version = "=0.4.3" } lazy_static = "1.4.0" [dev-dependencies] diff --git a/structopt-derive/Cargo.toml b/structopt-derive/Cargo.toml index c92244ae..30d20c23 100644 --- a/structopt-derive/Cargo.toml +++ b/structopt-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt-derive" -version = "0.4.2" +version = "0.4.3" edition = "2018" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct, derive crate."