8000 Fix changelog · thecodeflash/twilio-python@c832931 · GitHub
[go: up one dir, main page]

Skip to content

Commit c832931

Browse files
authored
Fix changelog
1 parent 4f6a3a0 commit c832931

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

CHANGES.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ Here you can see the full list of changes between each twilio-python release.
55

66
[2017-08-18] Version 6.5.2
77
---------------------------
8+
**Library**
9+
- Remove bundled certificates, use `certifi` package via `requests`.
10+
- Add option to use connection pooling. This is enabled by default and will use one Session for all requests
11+
in Client.
12+
- To disable this, pass `pool_connections` parameter when creating your Twilio client.
13+
```python
14+
from twilio.rest import Client
15+
from twilio.http.http_client import TwilioHttpClient
16+
17+
client = Client(
18+
username,
19+
password,
20+
http_client=TwilioHttpClient(pool_connections=False)
21+
)
22+
```
23+
824
**Api**
925
- Add VoiceReceiveMode {'voice', 'fax'} option to IncomingPhoneNumber UPDATE requests
1026

@@ -19,23 +35,6 @@ Here you can see the full list of changes between each twilio-python release.
1935
**Sync**
2036
- Add support for Service Instance unique names
2137

22-
23-
[2017-08-18] Version 6.6.0
24-
---------------------------
25-
- Add connection pooling. This is enabled by default and will use one Session for all requests
26-
in Client.
27-
- To disable this, you can turn this off when creating your Twilio client.
28-
```python
29-
from twilio.rest import Client
30-
from twilio.http.http_client import TwilioHttpClient
31-
32-
client = Client(
33-
username,
34-
password,
35-
http_client=TwilioHttpClient(pool_connections=False)
36-
)
37-
```
38-
3938
[2017-08-10] Version 6.5.1
4039
---------------------------
4140
Fixed PyJWT >= 1.5.1 exception

0 commit comments

Comments
 (0)
0