Skip to content

Commit 259ebd7

Browse files
committed
prepare 0.4.1 release
1 parent debdba5 commit 259ebd7

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ Contributors
1111
* Bob Ippolito
1212
* Christoph Gohlke
1313
* Donovan Preston
14+
* Fantix King
1415
* Floris Bruynooghe
1516
* Gerd Woetzel
1617
* Gustavo Niemeyer
1718
* Hye-Shik Chang
1819
* Jared Kuolt
1920
* Kyle Ambroff
2021
* Marcin Bachry
22+
* Marc Schlaich
2123
* Michael Ellerman
24+
* Michael Matz
2225
* Ralf Schmitt
2326
* Ronny Pfannschmidt
2427
* Samual M. Rushing
2528
* Tony Bowles
29+
* Trevor Bowen

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
0.4.1
2+
=====
3+
* fix segfaults when using gcc 4.8 on amd64/x86 unix
4+
* try to disable certain gcc 4.8 optimizations that make greenlet
5+
crash
6+
* Fix greenlet on aarch64 with gcc 4.8
7+
* workaround segfault on SunOS/sun4v
8+
* Add support for Aarch64
9+
* Add support for x32 psABI on x86_64
10+
* Changed memory constraints for assembly macro for PPC Linux
11+
platforms.
12+
113
0.4.0
214
=====
315
* Greenlet has an instance dictionary now, which means it can be

greenlet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
extern "C" {
1212
#endif
1313

14-
#define GREENLET_VERSION "0.4.0"
14+
#define GREENLET_VERSION "0.4.1"
1515

1616
typedef struct _greenlet {
1717
PyObject_HEAD

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def run(self):
9797

9898
setup(
9999
name="greenlet",
100-
version='0.4.0',
100+
version='0.4.1',
101101
description='Lightweight in-process concurrent programming',
102102
long_description=readfile("README.rst"),
103103
maintainer="Ralf Schmitt",

0 commit comments

Comments
 (0)