File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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+
1130.4.0
214=====
315* Greenlet has an instance dictionary now, which means it can be
Original file line number Diff line number Diff line change 1111extern "C" {
1212#endif
1313
14- #define GREENLET_VERSION "0.4.0 "
14+ #define GREENLET_VERSION "0.4.1 "
1515
1616typedef struct _greenlet {
1717 PyObject_HEAD
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ def run(self):
9797
9898setup (
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" ,
You can’t perform that action at this time.
0 commit comments