diff --git a/CHANGELOG.md b/CHANGELOG.md index f1ab669cf6c..a2400b570a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ + +### v2.33.3 (2020-08-13) + +#### Improvements + +* Suppress deprecation warnings when using `crate_*` macros. + ### v2.33.2 (2020-08-5) diff --git a/Cargo.toml b/Cargo.toml index 0b24911bc20..4c450e78fd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap" -version = "2.33.2" +version = "2.33.3" authors = ["Kevin K. "] exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"] repository = "https://github.com/clap-rs/clap" diff --git a/src/lib.rs b/src/lib.rs index be2e6d95838..17e2697be04 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -517,7 +517,7 @@ //! [license]: https://github.com/clap-rs/clap/blob/v2.33.1/LICENSE-MIT #![crate_type = "lib"] -#![doc(html_root_url = "https://docs.rs/clap/2.33.2")] +#![doc(html_root_url = "https://docs.rs/clap/2.33.3")] #![deny( missing_docs, missing_debug_implementations,