diff --git a/CHANGELOG.md b/CHANGELOG.md
index c432759b..e0660b25 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,13 +19,17 @@ TODO: `cargo`, `std` features
* `ErrorKind::MissingArgumentOrSubcommand` => `ErrorKind::DisplayHelpOnMissingArgumentOrSubcommand`
* **Changed**
* `Arg::env` & `Arg::env_os` does not set `ArgSettings::TakesValue` anymore
+ * `@group` in `clap_app!` now needs `:` instead of `=>`
#### Features
* **Added Methods**
* **App**
+ * `App::license`
* **Arg**
* `Arg::hide_env`
+ * **Macros**
+ * `crate_license!`
* **Added Settings**
* `ArgSettings::HideEnv`
diff --git a/SPONSORS.md b/SPONSORS.md
deleted file mode 100644
index 5cc5a0b1..00000000
--- a/SPONSORS.md
+++ /dev/null
@@ -1,16 +0,0 @@
-Below is a list of sponsors for the clap-rs project
-
-If you are interested in becoming a sponsor for this project please our [sponsorship page](https://clap.rs/sponsorship/).
-
-## Recurring Sponsors:
-
-| [](https://noeliasg.com/about/) | [](https://github.com/messense) | [](https://joshtriplett.org) |
-|:-:|:-:|:-:|
-|Noelia Seva-Gonzalez | Messense | Josh Triplett |
-
-
-## Single-Donation and Former Sponsors:
-
-| [](https://github.com/rtsuk)| | |
-|:-:|:-:|:-:|
-|Rob Tsuk| | |
\ No newline at end of file
diff --git a/src/build/arg/mod.rs b/src/build/arg/mod.rs
index bc14ac0b..43df7466 100644
--- a/src/build/arg/mod.rs
+++ b/src/build/arg/mod.rs
@@ -3067,7 +3067,7 @@ impl<'help> Arg<'help> {
/// assert!(res.is_ok());
/// ```
///
- /// Not setting [`Required`] and then *not* supplying that argument at runtime is an error.
+ /// Setting [`Required`] and then *not* supplying that argument at runtime is an error.
///
/// ```rust
/// # use clap::{App, Arg, ArgSettings, ErrorKind};