diff --git a/doc/source/misc.rst b/doc/source/misc.rst index 3a3d3fd5735e440d1c3314b2ea7e1c4c9f29db34..61abb7fb5bcd1cce980b0041eea4a28a376ea799 100644 --- a/doc/source/misc.rst +++ b/doc/source/misc.rst @@ -13,6 +13,18 @@ Acknowledgments User-visible Changes ==================== +Version 0.90.2 +-------------- + +* Fix :meth:`pyopencl.Platform.get_info`. +* Fix passing properties to :class:`pyopencl.CommandQueue`. + Also fix related documentation. + +Version 0.90.1 +-------------- + +* Fix building on the Mac. + Version 0.90 ------------ diff --git a/pyopencl/version.py b/pyopencl/version.py index 2861aa3995b73b30500549dc9cd41f589ab02a5e..25a005a06d6732d4f0a3705c98f1d618c8705cd1 100644 --- a/pyopencl/version.py +++ b/pyopencl/version.py @@ -1,4 +1,4 @@ -VERSION = (0, 90, 1) +VERSION = (0, 90, 2) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS