diff --git a/doc/source/misc.rst b/doc/source/misc.rst index b70119a9fc88595538f8936e4c52bc498c7514c6..04cd7d1f78415125835ef21bd829fb60f7f1297f 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 562146a6d22ee55dcb00c51402dd1193367fa642..789b6b9aabf6bc28a4a15189ef1724f61a75b9ec 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