diff --git a/doc/misc.rst b/doc/misc.rst
index ae2afa540ed19c38721220836070a7ab3e40f4e3..b3ba69f68061eef099e852f0060ed42a4814481b 100644
--- a/doc/misc.rst
+++ b/doc/misc.rst
@@ -118,6 +118,11 @@ Version 2016.1
     This version is currently under development. You can get snapshots from
     PyOpenCL's `git repository <https://github.com/pyopencl/pyopencl>`_
 
+Version 2015.2.3
+----------------
+
+* Fix one more Ubuntu 14.x build issue.
+
 Version 2015.2.2
 ----------------
 
diff --git a/pyopencl/version.py b/pyopencl/version.py
index 77e6fe31016eb93fa4e72d74ad2382e4d0fa828b..5450fb225a8ea41973250de444789725e7d684e3 100644
--- a/pyopencl/version.py
+++ b/pyopencl/version.py
@@ -1,3 +1,3 @@
-VERSION = (2015, 2, 2)
+VERSION = (2015, 2, 3)
 VERSION_STATUS = ""
 VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS