From 1381e96ceaeee201380025d0912892512881fe4c Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Thu, 17 Sep 2009 23:01:31 -0400 Subject: [PATCH] Bump version. --- doc/source/misc.rst | 6 ++++++ pyopencl/version.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/doc/source/misc.rst b/doc/source/misc.rst index d258e521..30b78328 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 107a527b..d7952ee2 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 -- GitLab