From da1fff81aded1c239ffcbd0a27ccdc7f28f74ff2 Mon Sep 17 00:00:00 2001 From: Guillaume Pinot Date: Mon, 18 Oct 2021 09:05:50 +0200 Subject: [PATCH] v0.3.25 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 4 ++-- structopt-derive/Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdf1ba7..30353f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v0.3.25 (2021-10-18) + +* Fix duplication of aliases in subcommands [#504](https://github.com/TeXitoi/structopt/pull/504) + +# v0.3.25 (2021-10-18) + +* No changes + # v0.3.23 (2021-08-30) * Update minimal rust version to 1.46 because of bitflags 1.3 diff --git a/Cargo.toml b/Cargo.toml index 3419882..5b57ebd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt" -version = "0.3.24" +version = "0.3.25" 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.17" } +structopt-derive = { path = "structopt-derive", version = "=0.4.18" } 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 76d7ec8..e081f89 100644 --- a/structopt-derive/Cargo.toml +++ b/structopt-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt-derive" -version = "0.4.17" +version = "0.4.18" edition = "2018" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct, derive crate."