diff --git a/doc/misc.rst b/doc/misc.rst
index ab1d9ecd3df2153c7df8f7cbd452f8d6c7ce9f4a..db3d1d9aaa87dc179fbe9682c6252587679a8250 100644
--- a/doc/misc.rst
+++ b/doc/misc.rst
@@ -86,14 +86,25 @@ See also :ref:`gen-remarks`.
 User-visible Changes
 ====================
 
-Version 2014.3
+Version 2016.2
 --------------
-
 .. note::
 
     This version is currently in development and can be obtained from
     islpy's version control.
 
+Version 2016.1.1
+----------------
+
+* Add :func:`make_zero_and_vars`
+* Do not turn on small-integer optimization by default
+  (to avoid build trouble on old compilers)
+
+Version 2016.1
+--------------
+
+* Update for isl 0.16
+
 Version 2014.2.1
 ----------------
 
diff --git a/islpy/version.py b/islpy/version.py
index dee30a017de71b649cc39d2b991d732bf2fb9e69..6cfe5233690b7dfe2a853c16f9a689868480d150 100644
--- a/islpy/version.py
+++ b/islpy/version.py
@@ -1,2 +1,2 @@
-VERSION = (2016, 1,)
+VERSION = (2016, 1, 1)
 VERSION_TEXT = ".".join(str(i) for i in VERSION)