diff --git a/guide/src/migration.md b/guide/src/migration.md
index 8ac3ff16c47..403118307d4 100644
--- a/guide/src/migration.md
+++ b/guide/src/migration.md
@@ -5,6 +5,15 @@ For a detailed list of all changes, see the [CHANGELOG](changelog.md).
## from 0.21.* to 0.22
+### Deprecation of `gil-refs` feature continues
+
+Click to expand
+
+Following the introduction of the "Bound" API in PyO3 0.21 and the planned removal of the "GIL Refs" API, all functionality related to GIL Refs is now gated behind the `gil-refs` feature and emits a deprecation warning on use.
+
+See the 0.21 migration entry for help upgrading.
+
+
### Deprecation of implicit default for trailing optional arguments
Click to expand
@@ -529,6 +538,7 @@ assert_eq!(&*name, "list");
# }
# Python::with_gil(example).unwrap();
```
+
## from 0.19.* to 0.20