diff --git a/doc/misc.rst b/doc/misc.rst
index 4255ef6661a4d2b8139a4ac0659bb277a9d8a3fb..6ffb00cbffb4e920d0bdbfac718eac6bf326ab4f 100644
--- a/doc/misc.rst
+++ b/doc/misc.rst
@@ -20,14 +20,17 @@ and say::
 User-visible changes
 ====================
 
-Version 2017.4
---------------
-
 .. note::
 
     This version is currently under development. You can get snapshots from
     Pytools's `git repository <https://github.com/inducer/pytools>`_
 
+Version 2020.3
+--------------
+
+* Type annotations were added.
+* Python 2 support was dropped.
+
 .. _license:
 
 License
diff --git a/pytools/version.py b/pytools/version.py
index 0371d44ef9ee993b69c91277455f54766aab3c1d..1f937af0de7c35163988ce3e636ad69e8e0aa2ba 100644
--- a/pytools/version.py
+++ b/pytools/version.py
@@ -1,3 +1,3 @@
-VERSION = (2020, 2)
+VERSION = (2020, 3)
 VERSION_STATUS = ""
 VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS