From cc3801f2b39b1a71c0f3d9e3acaac8e9affb93df Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Wed, 20 Apr 2016 15:52:28 -0500 Subject: [PATCH] Version bump, plus release fixes --- MANIFEST.in | 8 ++++---- doc/misc.rst | 11 ++++++++++- pyopencl/version.py | 2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 7559cefb..f90af75e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,12 +12,12 @@ include test/*.h include examples/*.py include examples/*.ipynb -include doc/source/*.rst +include doc/*.rst include doc/Makefile include doc/*.py -include doc/source/conf.py -include doc/source/_static/*.css -include doc/source/_templates/*.html +include doc/conf.py +include doc/_static/*.css +include doc/_templates/*.html include *.py.in include configure.py diff --git a/doc/misc.rst b/doc/misc.rst index 6ef89aa5..d6f3b530 100644 --- a/doc/misc.rst +++ b/doc/misc.rst @@ -110,7 +110,7 @@ other software to be turned into the corresponding :mod:`pyopencl` objects. User-visible Changes ==================== -Version 2016.1 +Version 2016.2 -------------- .. note:: @@ -118,6 +118,15 @@ Version 2016.1 This version is currently under development. You can get snapshots from PyOpenCL's `git repository <https://github.com/pyopencl/pyopencl>`_ +Version 2016.1 +-------------- + +* The ``from_int_ptr`` methods now take a *retain* parameter for more convenient + ownership management. +* Kernel build options (if passed as a list) are now properly quoted. + (This is a potentially compatibility-breaking change.) +* Many bug fixes. (GL interop, Windows, event callbacks and more) + Version 2015.2.4 ---------------- diff --git a/pyopencl/version.py b/pyopencl/version.py index 9e1439f2..baedf508 100644 --- a/pyopencl/version.py +++ b/pyopencl/version.py @@ -1,3 +1,3 @@ -VERSION = (2015, 2, 4) +VERSION = (2016, 1,) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS -- GitLab