Skip to content

Commit

Permalink
v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
TeXitoi committed Dec 22, 2019
1 parent 920e84f commit bf008bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# [Upcoming]
# v0.3.6 (2019-12-22)

This is unusually big patch release. It contains a number of bugfixes and
new features, some of them may theoretically be considered breaking. We did our best
to avoid any problems on user's side but, if it wasn't good enough, please
[file an issue ASAP](https://github.com/TeXitoi/structopt/issues).

### Bugfixes
## Bugfixes

* `structopt` used to treat `::path::to::type::Vec<T>` as `Vec<T>`
special type. [This was considered erroneous](https://github.com/TeXitoi/structopt/pull/287).
Expand All @@ -30,7 +30,7 @@ to avoid any problems on user's side but, if it wasn't good enough, please
teaching me English and explaining why our doc used to suck. I promise I'll make the rest
of the doc up to your standards... sometime later!

### New features
## New features

* Implement `StructOpt` for `Box<impl StructOpt>` so from now on you can use `Box<T>`
with `flatten` and `subcommand` ([#304](https://github.com/TeXitoi/structopt/issues/304)).
Expand Down Expand Up @@ -62,7 +62,7 @@ to avoid any problems on user's side but, if it wasn't good enough, please
so you can derive env var's name from field's name. See
[the documentation](https://docs.rs/structopt/0.3/structopt/#auto-deriving-environment-variables).

### Improvements
## Improvements

* Now we have nice README for our examples,
[check it out](https://github.com/TeXitoi/structopt/tree/master/examples)!
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.5"
version = "0.3.6"
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.3.5" }
structopt-derive = { path = "structopt-derive", version = "0.3.6" }

[dev-dependencies]
trybuild = "1.0.5"
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.3.5"
version = "0.3.6"
edition = "2018"
authors = ["Guillaume Pinot <[email protected]>"]
description = "Parse command line argument by defining a struct, derive crate."
Expand Down

0 comments on commit bf008bb

Please sign in to comment.