diff --git a/doc/misc.rst b/doc/misc.rst
index ede0ff19aa586cdfe0bae84174c8610dca5a687f..ae2afa540ed19c38721220836070a7ab3e40f4e3 100644
--- a/doc/misc.rst
+++ b/doc/misc.rst
@@ -118,13 +118,18 @@ 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.1
+Version 2015.2.2
 ----------------
 
 * Fix compatibility with CL 1.1
 * Fix compatibility with Ubuntu 14.x.
 * Various bug fixes
 
+Version 2015.2.1
+----------------
+
+* Fix global_offset kernel launch parameter
+
 Version 2015.2
 --------------
 
diff --git a/pyopencl/version.py b/pyopencl/version.py
index 73e5bd26ba36ef03105d34f1d25f80ed249004d5..77e6fe31016eb93fa4e72d74ad2382e4d0fa828b 100644
--- a/pyopencl/version.py
+++ b/pyopencl/version.py
@@ -1,3 +1,3 @@
-VERSION = (2015, 2, 1)
+VERSION = (2015, 2, 2)
 VERSION_STATUS = ""
 VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS