diff --git a/doc/source/misc.rst b/doc/source/misc.rst index d258e521b31157cd943a87af2675f40ad3f30a25..30b78328f5ce207ce75ac2d0a8293434762eacd2 100644 --- a/doc/source/misc.rst +++ b/doc/source/misc.rst @@ -67,6 +67,12 @@ Version 0.92 Version 0.92 is currently under development. You can get snapshots from PyOpenCL's git version control. +Version 0.91.1 +-------------- + +* Fixed a number of bugs, notably involving :class:`pyopencl.Sampler`. +* :class:`pyopencl.Device`, :class:`pyopencl.Platform`, + :class:`pyopencl.Context` now have nicer string representations. * Add :attr:`Image.shape`. (suggested by David Garcia) Version 0.91 diff --git a/pyopencl/version.py b/pyopencl/version.py index 107a527b90bf16dc012fb6c50b621fbe18b6867c..d7952ee2b2a662206c10267a0ad4b0332e2cd87f 100644 --- a/pyopencl/version.py +++ b/pyopencl/version.py @@ -1,5 +1,5 @@ -VERSION = (0, 92) -VERSION_STATUS = "beta" +VERSION = (0, 91, 1) +VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS