Skip to content

Commit

Permalink
v0.3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
CreepySkeleton committed Oct 12, 2020
1 parent 4c17b61 commit 6fa8d68
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.3.20 (2020-10-12)

* Fixed [a breakage](https://github.com/TeXitoi/structopt/issues/439)
when the struct is placed inside a `macro_rules!` macro.

# v0.3.19 (2020-10-08)

* Added [StructOpt::from_args_safe](https://docs.rs/structopt/0.3/structopt/trait.StructOpt.html#tymethod.from_args_safe) as a shortcut for `StructOpt::from_iter_safe(std::env::args_os())`.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "structopt"
version = "0.3.19"
version = "0.3.20"
edition = "2018"
authors = ["Guillaume Pinot <[email protected]>", "others"]
description = "Parse command line argument by defining a struct."
Expand Down Expand Up @@ -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.12" }
structopt-derive = { path = "structopt-derive", version = "=0.4.13" }
lazy_static = "1.4.0"
paw_dep = { version = "1", optional = true, package = "paw" }

Expand Down
2 changes: 1 addition & 1 deletion structopt-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "structopt-derive"
version = "0.4.12"
version = "0.4.13"
edition = "2018"
authors = ["Guillaume Pinot <[email protected]>"]
description = "Parse command line argument by defining a struct, derive crate."
Expand Down

0 comments on commit 6fa8d68

Please sign in to comment.