From 888c27048d5f683ab94e60c866eec608aa9aa67b Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 2 Dec 2021 20:20:50 -0600 Subject: [PATCH] docs: Update changelog --- CHANGELOG.md | 2 -- tests/derive/structopt.rs | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f6dbf00..e27fed25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,6 @@ whether in changes or their motivation. TBD: - `AppSettings::ColoredHelp`: we are now relying solely on the `color` feature flag and `App::color` method -- Rename of `StructOpt` -- Rename of `structopt` ### BREAKING CHANGES diff --git a/tests/derive/structopt.rs b/tests/derive/structopt.rs index 95b0a926..a3727305 100644 --- a/tests/derive/structopt.rs +++ b/tests/derive/structopt.rs @@ -1,3 +1,5 @@ +#![allow(deprecated)] + use clap::{AppSettings, StructOpt}; #[test]