diff --git a/doc/misc.rst b/doc/misc.rst index 950e27da8412d84cec520687ae9d65e0aa58d819..31b954e3fe8c637b15f8d8ab6fa5853b40ed583e 100644 --- a/doc/misc.rst +++ b/doc/misc.rst @@ -110,13 +110,22 @@ other software to be turned into the corresponding :mod:`pyopencl` objects. User-visible Changes ==================== -Version 2014.1 +Version 2015.2 -------------- .. note:: This version is currently under development. You can get snapshots from PyOpenCL's `git repository `_ +Version 2015.1 +-------------- + +* Support for new-style buffer protocol +* Numerous fixes + +Version 2014.1 +-------------- + * :ref:`ipython-integration` * Bug fixes diff --git a/pyopencl/version.py b/pyopencl/version.py index 2d917d29fc041929fe4c94362fd212f13cafc685..a0b428c42f2ebf49667fa8e7a9a48f643c23b915 100644 --- a/pyopencl/version.py +++ b/pyopencl/version.py @@ -1,3 +1,3 @@ -VERSION = (2014, 1) +VERSION = (2015, 1) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS