All Versions
52
Latest Version
Avg Release Cycle
34 days
Latest Release
1252 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.3.25 Changes
October 18, 2021- ๐ Fix duplication of aliases in subcommands #504
-
v0.3.23 Changes
August 30, 2021- โก๏ธ Update minimal rust version to 1.46 because of bitflags 1.3
- ๐ Fixed a bug that occurs when the type of
map
becomes ambiguous. - โ Add support for skip for enum variant subcommands
-
v0.3.22 Changes
July 04, 2021- โ Add support for generics in derive
-
v0.3.21 Changes
November 30, 2020- ๐ Fixed another breakage
when the struct is placed inside a
macro_rules!
macro.
- ๐ Fixed another breakage
when the struct is placed inside a
-
v0.3.20 Changes
October 12, 2020- ๐ Fixed a breakage
when the struct is placed inside a
macro_rules!
macro.
- ๐ Fixed a breakage
when the struct is placed inside a
-
v0.3.19 Changes
October 08, 2020- Added StructOpt::from_args_safe as a shortcut for
StructOpt::from_iter_safe(std::env::args_os())
. - ๐ Some links in documentation have been corrected.
- Added StructOpt::from_args_safe as a shortcut for
-
v0.3.18 Changes
September 23, 2020- Unsafe code has been forbidden. This makes
cargo geiger
list structopt as "safe". Maybe it will help somebody trying to locate a bug in their dependency tree.
- Unsafe code has been forbidden. This makes
-
v0.3.17 Changes
August 25, 2020- ๐ Fixed a breakage with resent rustc versions
due to
quote_spanned
misuse.
- ๐ Fixed a breakage with resent rustc versions
due to
-
v0.3.16 Changes
August 05, 2020- โ Added the new example.
- ๐ Allow
#[structopt(flatten)]
fields to have doc comments. The comments are ignored. - The
paw
crate is now being reexported whenpaw
feature is enabled, see#407
.
-
v0.3.15 Changes
June 16, 2020- ๐ Minor documentation improvements.
- ๐ Fixed a latent bug, courtesy of @Aaron1011.