From 88e5402df017c052f1524f293b2e13bd01810819 Mon Sep 17 00:00:00 2001 From: Guillaume Pinot Date: Mon, 30 Aug 2021 19:20:47 +0200 Subject: [PATCH] v0.3.23 --- CHANGELOG.md | 2 +- Cargo.toml | 4 ++-- structopt-derive/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4a86c6..cdf1ba7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# v0.3.23 (unreleased) +# v0.3.23 (2021-08-30) * Update minimal rust version to 1.46 because of bitflags 1.3 * Fixed [a bug that occurs when the type of `map` becomes ambiguous](https://github.com/TeXitoi/structopt/issues/490). diff --git a/Cargo.toml b/Cargo.toml index 4f200dd..bccc07f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt" -version = "0.3.22" +version = "0.3.23" 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.15" } +structopt-derive = { path = "structopt-derive", version = "=0.4.16" } 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 db7e295..b41ac8a 100644 --- a/structopt-derive/Cargo.toml +++ b/structopt-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt-derive" -version = "0.4.15" +version = "0.4.16" edition = "2018" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct, derive crate."