File tree Expand file tree Collapse file tree 3 files changed +29
-4
lines changed
Expand file tree Collapse file tree 3 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 33The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
44and this project (kinda) adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
55
6+ ## [ 3.1.0]
7+
8+ ### Changed
9+
10+ - Network layer prevents createConnection if already connected
11+ - Fixed crash when config path does not exist
12+ - yowsup-cli will interpret -c as phone if load_path fails
13+ - Allow keypair in credentials to be bytes
14+ - Noise layer now uses credential's client_static_keypair if set, instead of loading it from stored config
15+ - Improved config type detection logic, refs #2664
16+ - Fixed some python2-related problems (long-type phone numbers, missing list.clear() method), refs #2664
17+ - Updated consonance to fix dissononce's machine.next and enforce cryptography>=0.25
18+
19+ ### Added
20+
21+ - Complete asyncore dispatcher implementation.
22+ - Support for decoding deflate compressed data, fixes #2671
23+ - Specifying a connection dispatcher (asyncore/socket) using YowNetworkLayer.PROP_DISPATCHER
24+ - --layer-network-dispatcher to cli demos
25+
26+ ### Removed
27+
28+ - threading from socket dispatcher, connecting application should ensure the connection is not blocking, for
29+ example by triggering connect in a bg thread.
30+
631## [ 3.0.0]
732
833### Changed
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ The project started as the protocol engine behind [Wazapp for Meego](https://wik
88library it can be used to power any custom WhatsApp client.
99
1010```
11- updated: 2019-04-23
12- yowsup version: 3.0 .0
13- yowsup-cli version: 3.0 .0
11+ updated: 2019-04-25
12+ yowsup version: 3.1 .0
13+ yowsup-cli version: 3.1 .0
1414requires:
1515- python>=2.7,<=3.7
1616- consonance==0.1.0
Original file line number Diff line number Diff line change 11import logging
22
3- __version__ = "3.0 .0"
3+ __version__ = "3.1 .0"
44__author__ = "Tarek Galal"
55
66logger = logging .getLogger (__name__ )
You can’t perform that action at this time.
0 commit comments