diff --git a/docs/release-notes.md b/docs/release-notes.md
index aef9404b1..2dfd2cd89 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,5 +1,11 @@
## Next release
+* Add additional `responses` parameter to *path operation decorators* to extend responses in OpenAPI (and API docs).
+ * It also allows extending existing responses generated from `response_model`, declare other media types (like images), etc.
+ * The new documentation is here: Additional Responses.
+ * `responses` can also be added to `.include_router()`, the updated docs are here: Bigger Applications.
+ * PR #97 originally initiated by @barsi.
+
## 0.11.0
* Add `auto_error` parameter to security utility functions. Allowing them to be optional. Also allowing to have multiple alternative security schemes that are then checked in a single dependency instead of each one verifying and returning the error to the client automatically when not satisfied. PR #134.