diff --git a/doc/misc.rst b/doc/misc.rst index d49969b3c88ebbe8c5af3063fcc5907324a7cd60..5e21c3fc59218560437572b8646d5762dceb59ec 100644 --- a/doc/misc.rst +++ b/doc/misc.rst @@ -91,13 +91,16 @@ other software to be turned into the corresponding :mod:`pyopencl` objects. User-visible Changes ==================== -Version 2013.2 +Version 2013.3 -------------- .. note:: This version is currently under development. You can get snapshots from PyOpenCL's `git repository <https://github.com/inducer/pyopencl>`_ +Version 2013.2 +-------------- + * Add :meth:`pyopencl.array.Array.map_to_host`. * Support *strides* on :func:`pyopencl.enqueue_map_buffer` and :func:`pyopencl.enqueue_map_image`. diff --git a/pyopencl/version.py b/pyopencl/version.py index 63d4f9f960c4753ea779567bc1b267e9844d8e19..cce4332fa693dc66686f9a61f4d85bb1a2692d2e 100644 --- a/pyopencl/version.py +++ b/pyopencl/version.py @@ -1,4 +1,4 @@ -VERSION = (2013, 2) +VERSION = (2013, 3) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS