diff --git a/doc/misc.rst b/doc/misc.rst
index 167c5353498a774aecd7bfc5e75865a83f6193a2..7459f89f525cd9d178f3b3814aac0fc3f9ddd527 100644
--- a/doc/misc.rst
+++ b/doc/misc.rst
@@ -207,7 +207,7 @@ other software to be turned into the corresponding :mod:`pyopencl` objects.
 User-visible Changes
 ====================
 
-Version 2016.3
+Version 2017.2
 --------------
 
 .. note::
@@ -215,6 +215,22 @@ Version 2016.3
     This version is currently under development. You can get snapshots from
     PyOpenCL's `git repository <https://github.com/inducer/pyopencl>`_
 
+Version 2018.1
+--------------
+
+* Introduce *eliminate_empty_output_lists* argument of :class:`pyopencl.algorithm.ListOfListsBuilder`.
+* Many bug fixes.
+
+Version 2017.2
+--------------
+
+* Many bug fixes.
+
+Version 2017.1
+--------------
+
+* Introduce :mod:`pyopencl.cltypes`
+
 Version 2016.2
 --------------
 
diff --git a/pyopencl/version.py b/pyopencl/version.py
index a38c9aaab03ea062b3f11286ac54dc101942e802..922dd503cf5856279cfaadc1adedf45efb8b35cd 100644
--- a/pyopencl/version.py
+++ b/pyopencl/version.py
@@ -1,3 +1,3 @@
-VERSION = (2017, 2, 2)
+VERSION = (2018, 1)
 VERSION_STATUS = ""
 VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS