From 5066955a68da8a2ec7e9d73a3215ff5e87ef772f Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Mon, 28 Sep 2009 02:40:19 -0400 Subject: [PATCH] Bump version. Update change docs. --- doc/source/misc.rst | 3 ++- pyopencl/version.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/source/misc.rst b/doc/source/misc.rst index b70119a9..04cd7d1f 100644 --- a/doc/source/misc.rst +++ b/doc/source/misc.rst @@ -73,8 +73,9 @@ Version 0.91.3 * All parameters named *host_buffer* were renamed *hostbuf* for consistency with the :class:`pyopencl.Buffer` constructor introduced in 0.91. Compatibility code is in place. -* The :class:`Image` constructor does not need a *shape* parameter if the +* The :class:`pyopencl.Image` constructor does not need a *shape* parameter if the given *hostbuf* has *hostbuf.shape*. +* The :class:`pyopencl.Context` constructor can now be called without parameters. Version 0.91.2 -------------- diff --git a/pyopencl/version.py b/pyopencl/version.py index 562146a6..789b6b9a 100644 --- a/pyopencl/version.py +++ b/pyopencl/version.py @@ -1,4 +1,4 @@ -VERSION = (0, 91, 2) +VERSION = (0, 91, 3) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS -- GitLab