From bc3291db8e2d44e3171d42fe59bdaf0f07e24dce Mon Sep 17 00:00:00 2001 From: Kevin K Date: Mon, 11 May 2020 12:14:38 -0400 Subject: [PATCH 1/2] chore: increase version on v2 branch --- CHANGELOG.md | 17 ++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 965b653ac5f..589a788c06a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,19 @@ -## Unreleased + +### v2.33.1 (2020-05-11) + +#### Bug Fixes + +* Windows: Prevent some panics when parsing invalid Unicode on Windows ([922c645](https://github.com/clap-rs/clap/commit/922c64508389170c9c77f1c8a4e597d14d3ed2f0), closes [#1905](https://github.com/clap-rs/clap/issues/1905)) + +#### Documentation + +* fixes versions referenced in the README ([d307466a](https://github.com/kbknapp/clap-rs/commit/d307466af1013f172b8ec0252f01a473e2192d6b)) +* **README.md:** + * cuts down the number of examples to reduce confusion ([6e508ee0](https://github.com/kbknapp/clap-rs/commit/6e508ee09e7153de4adf4e88b0aa6418a537dadd)) + +#### Improvements + +* **Deps:** doesnt compile ansi_term on Windows since its not used ([b57ee946](https://github.com/kbknapp/clap-rs/commit/b57ee94609da3ddc897286cfba968f26ff961491), closes [#1155](https://github.com/kbknapp/clap-rs/issues/1155)) #### Minimum Required Rust diff --git a/Cargo.toml b/Cargo.toml index 47498c1ee5a..aad8f87e738 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "2.33.0" +version = "2.33.1" authors = ["Kevin K. "] exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"] repository = "https://github.com/clap-rs/clap" From 7ac16ac5c7ee7bfcf7b9a083cf9f4e1e99a4ed65 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Mon, 11 May 2020 12:25:27 -0400 Subject: [PATCH 2/2] chore: increase ver ref in lib.rs --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 98fcaee23c0..84c48962739 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -517,7 +517,7 @@ //! [license]: https://raw.githubusercontent.com/clap-rs/clap/master/LICENSE-MIT #![crate_type = "lib"] -#![doc(html_root_url = "https://docs.rs/clap/2.33.0")] +#![doc(html_root_url = "https://docs.rs/clap/2.33.1")] #![deny( missing_docs, missing_debug_implementations,