Skip to content

Commit 2de91c6

Browse files
committed
[meta] update to 3.1.0
Updated changelog and readme
1 parent 84c4201 commit 2de91c6

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and 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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ The project started as the protocol engine behind [Wazapp for Meego](https://wik
88
library 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
1414
requires:
1515
- python>=2.7,<=3.7
1616
- consonance==0.1.0

yowsup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import logging
22

3-
__version__ = "3.0.0"
3+
__version__ = "3.1.0"
44
__author__ = "Tarek Galal"
55

66
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)