Add more detailed versioning policy (#197)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 2585ac7..3b1a093 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -23,11 +23,14 @@
 # Versioning scheme
 
 Starting with version 4.0.0, `typing_extensions` uses
-[Semantic Versioning](https://semver.org/). The major version is incremented for all
-backwards-incompatible changes.
+[Semantic Versioning](https://semver.org/). See the documentation
+for more detail.
 
 # Workflow for PyPI releases
 
+- Make sure you follow the versioning policy in the documentation
+  (e.g., release candidates before any feature release)
+
 - Ensure that GitHub Actions reports no errors.
 
 - Update the version number in `typing_extensions/pyproject.toml` and in
diff --git a/doc/index.rst b/doc/index.rst
index e790a2f..6b1a6f0 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -37,6 +37,17 @@
 we are highly hesitant to break backwards compatibility, and we do not
 expect to increase the major version number in the foreseeable future.
 
+Feature releases, with version numbers of the form 4.N.0, are made at
+irregular intervals when enough new features accumulate. Before a
+feature release, at least one release candidate (with a version number
+of the form 4.N.0rc1) should be released to give downstream users time
+to test. After at least a week of testing, the new feature version
+may then be released. If necessary, additional release candidates can
+be added.
+
+Bugfix releases, with version numbers of the form 4.N.1 or higher,
+may be made if bugs are discovered after a feature release.
+
 Before version 4.0.0, the versioning scheme loosely followed the Python
 version from which features were backported; for example,
 ``typing_extensions`` 3.10.0.0 was meant to reflect ``typing`` as of