Skip to content

Commit

Permalink
chore: increase version
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Feb 6, 2018
1 parent 12bb473 commit 790f1e3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 22 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="v2.29.4"></a>
### v2.29.4 (2018-02-06)


#### Bug Fixes

* **Overrides Self:** fixes a bug where options with multiple values couldnt ever have multiple values ([d95907cf](https://github.com/kbknapp/clap-rs/commit/d95907cff6d011a901fe35fa00b0f4e18547a1fb))



<a name="v2.29.3"></a>
### v2.29.3 (2018-02-05)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "clap"
version = "2.29.3"
version = "2.29.4"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
repository = "https://github.com/kbknapp/clap-rs"
Expand Down
24 changes: 4 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)

## What's New

Here's whats new in 2.29.4:

* **Overrides Self:** fixes a bug where options with multiple values couldnt ever have multiple values ([d95907cf](https://github.com/kbknapp/clap-rs/commit/d95907cff6d011a901fe35fa00b0f4e18547a1fb))

Here's whats new in 2.29.3:

* **Self Overrides:** now supports arguments which override themselves (Allows true shell aliases, config files, etc!)
Expand Down Expand Up @@ -69,26 +73,6 @@ Here's whats new in 2.29.1:
* Updates contributors list
* Fixes the ripgrep benchmark by adding a value to a flag that expects it

Here's whats new in 2.29.0:

* **Arg:** adds Arg::hide_env_values(bool) which allows one to hide any current env values and display only the key in help messages

Here's whats new in 2.28.0:

The minimum required Rust is now 1.20. This was done to start using bitflags 1.0 and having >1.0 deps is a *very good* thing!

* Updates `bitflags` to 1.0
* Adds the traits to be used with the `clap-derive` crate to be able to use Custom Derive (for now must be accessed with `unstable` feature flag)
* Adds Arg::case_insensitive(bool) which allows matching Arg::possible_values without worrying about ASCII case
* Fixes a regression where --help couldn't be overridden
* adds '[SUBCOMMAND]' to usage strings with only AppSettings::AllowExternalSubcommands is used with no other subcommands
* uses `.bash` for Bash completion scripts now instead of `.bash-completion` due to convention and `.bash-completion` not being supported by completion projects
* Fix URL path to github hosted files
* fix typos in docs
* **README.md:** updates the readme and pulls out some redundant sections
* fixes a bug that allowed options to pass parsing when no value was provided
* ignore PropagateGlobalValuesDown deprecation warning

For full details, see [CHANGELOG.md](https://github.com/kbknapp/clap-rs/blob/master/CHANGELOG.md)

## About
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@
//! this repository for more information.

#![crate_type = "lib"]
#![doc(html_root_url = "https://docs.rs/clap/2.29.3")]
#![doc(html_root_url = "https://docs.rs/clap/2.29.4")]
#![deny(missing_docs, missing_debug_implementations, missing_copy_implementations, trivial_casts,
unused_import_braces, unused_allocation)]
// Lints we'd like to deny but are currently failing for upstream crates
Expand Down

0 comments on commit 790f1e3

Please sign in to comment.