diff --git a/CHANGELOG.md b/CHANGELOG.md
index de5dc6ce..111e2134 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+
+### v2.19.1 (2016-12-01)
+
+
+#### Bug Fixes
+
+* **Help Messages:** fixes help message alignment when specific settings are used on options ([cd94b318](https://github.com/kbknapp/clap-rs/commit/cd94b3188d63b63295a319e90e826bca46befcd2), closes [#760](https://github.com/kbknapp/clap-rs/issues/760))
+
+#### Improvements
+
+* **Bash Completion:** allows bash completion to fall back to traidtional bash completion upon no matching completing function ([b1b16d56](https://github.com/kbknapp/clap-rs/commit/b1b16d56d8fddf819bdbe24b3724bb6a9f3fa613)))
+
+
## v2.19.0 (2016-11-21)
diff --git a/Cargo.toml b/Cargo.toml
index 01cdb2de..760c1154 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "clap"
-version = "2.19.0"
+version = "2.19.1"
authors = ["Kevin K. "]
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
repository = "https://github.com/kbknapp/clap-rs.git"
diff --git a/README.md b/README.md
index 66569cb3..d2243efb 100644
--- a/README.md
+++ b/README.md
@@ -45,20 +45,18 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
-Here's the highlights for v2.19.0
+Here's the highlights for v2.19.1
+
+* **Help Messages:** fixes help message alignment when specific settings are used on options
+* **Bash Completion:** allows bash completion to fall back to traidtional bash completion upon no matching completing function
+
+
+Here's the highlights from v2.0.0 to v2.19.0
* **Arg Setting**: Allows specifying an `AllowLeadingHyphen` style setting for values only for specific args, vice command wide
* **Validators:** improves the error messages for validators
-* Updates the docs landing page
-* Adds the macro version back to the readme
-* Fixes some broken docs links
-* **Compatibility Policy:** adds an official compatibility policy to
-* **Contributing:** updates the readme to improve the readability and contributing sections
* **Required Unless:** fixes a bug where having required_unless set doesn't work when conflicts are also set
* **ZSH Completions:** fixes an issue where zsh completions caused panics if there were no subcommands
-
-Here's the highlights from v2.0.0 to v2.18.0
-
* **Completions:** Adds completion support for Microsoft PowerShell! (Thanks to @Arnavion)
* Allows specifying the second to last positional argument as `multiple(true)` (i.e. things such as `mv ... `)
* Adds an `App::get_name` and `App::get_bin_name`