From 9966bd852d6fef4fd87ceddb00224dc338c7702a Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Fri, 19 Jan 2018 17:47:40 -0600 Subject: [PATCH] Bump version --- doc/misc.rst | 18 +++++++++++++++++- pyopencl/version.py | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/doc/misc.rst b/doc/misc.rst index 167c5353..7459f89f 100644 --- a/doc/misc.rst +++ b/doc/misc.rst @@ -207,7 +207,7 @@ other software to be turned into the corresponding :mod:`pyopencl` objects. User-visible Changes ==================== -Version 2016.3 +Version 2017.2 -------------- .. note:: @@ -215,6 +215,22 @@ Version 2016.3 This version is currently under development. You can get snapshots from PyOpenCL's `git repository <https://github.com/inducer/pyopencl>`_ +Version 2018.1 +-------------- + +* Introduce *eliminate_empty_output_lists* argument of :class:`pyopencl.algorithm.ListOfListsBuilder`. +* Many bug fixes. + +Version 2017.2 +-------------- + +* Many bug fixes. + +Version 2017.1 +-------------- + +* Introduce :mod:`pyopencl.cltypes` + Version 2016.2 -------------- diff --git a/pyopencl/version.py b/pyopencl/version.py index a38c9aaa..922dd503 100644 --- a/pyopencl/version.py +++ b/pyopencl/version.py @@ -1,3 +1,3 @@ -VERSION = (2017, 2, 2) +VERSION = (2018, 1) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS -- GitLab