From 42b65a7b67dfabd180625155cd4fcd8e51917fe2 Mon Sep 17 00:00:00 2001 From: Alexey Borzenkov Date: Sat, 18 Oct 2014 19:57:23 +0400 Subject: Prepare to release 0.4.5 --- NEWS | 7 +++++++ greenlet.h | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index ef191fd..b579367 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +0.4.5 +===== +- Fixed several bugs in greenlet C API +- Fixed a bug in multi-threaded applications, which manifested itself + with spurious "cannot switch to a different thread" exceptions +- Fixed some crashes on arm and mips architectures + 0.4.4 ===== - Fixed PyGreenlet_SetParent signature, thanks to BoonsNaibot diff --git a/greenlet.h b/greenlet.h index 48bc7ce..ed423fd 100644 --- a/greenlet.h +++ b/greenlet.h @@ -11,7 +11,7 @@ extern "C" { #endif -#define GREENLET_VERSION "0.4.4" +#define GREENLET_VERSION "0.4.5" typedef struct _greenlet { PyObject_HEAD diff --git a/setup.py b/setup.py index c471c3a..1844948 100755 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ from my_build_ext import build_ext setup( name="greenlet", - version='0.4.4', + version='0.4.5', description='Lightweight in-process concurrent programming', long_description=readfile("README.rst"), maintainer="Alexey Borzenkov", -- cgit v1.2.1