-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathNEWS.txt
More file actions
71 lines (42 loc) · 1.11 KB
/
NEWS.txt
File metadata and controls
71 lines (42 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
News
====
1.0.0
---
*Release date: 2021-01-08*
* Breaking change: No more official support for python 2: **If you need to run on python 2, stay on the 0.1.x series.**
* Breaking change: This library no longer calls gevent's monkey patch internally. Code using this library must do
```
from gevent import monkey
monkey.patch_all()
```
or some other choice of patch_* functions to prepare gevent before importing this library. See
https://github.com/gevent/gevent/issues/1231#issuecomment-393945383
for some context.
0.1.7
---
*Release date: 2018-10-07*
* Raise exceptions in main greenlet
0.1.6
---
*Release date: 2018-10-03*
* Improved error handling
0.1.5
---
*Release date: 2018-09-03*
* Callbacks now wait for resubscribe to finish
0.1.4
---
*Release date: 2018-08-29*
* If connect tells us to handshake again, resubscribe after handshake
0.1.3
---
*Release date: 2018-07-24*
* Fix unknown client error code - thanks for the report @ivanpricewaycom!
0.1.2
---
*Release date: 2018-01-04*
* Fix logging problem with unicode - thanks @christophe-gabard!
0.1
---
*Release date: 2016-08-26*
* Initial release.