How to verify that your released correctly
diff --git a/docs/doing-a-release.rst b/docs/doing-a-release.rst
index e52c272..0f38206 100644
--- a/docs/doing-a-release.rst
+++ b/docs/doing-a-release.rst
@@ -25,4 +25,12 @@
 
 The release should now be available on PyPI and a tag should be available in
 the repository. You should verify that ``pip install cryptography`` works
-correctly.
+correctly:
+
+.. code-block:: pycon
+
+    >>> import cryptography
+    >>> cryptography.__version__
+    '...'
+
+Verify that this is the version you just released.